import * as React from 'react'; import classNames from 'classnames'; import FlashMessageRender from '@/components/FlashMessageRender'; type Props = Readonly, HTMLDivElement> & { title?: string; borderColor?: string; showFlashes?: string | boolean; }>; export default ({ title, borderColor, showFlashes, children, ...props }: Props) => (
{title &&

{title}

} {showFlashes && }
{children}
);