import { Flex, Section } from '../../components'; /** * Just a generic wrapper for fullscreen notices. */ export const FullscreenNotice = (props, context) => { const { children, title = 'Welcome' } = props; return (
{children}
); };