// @flow import React from 'react'; import Helmet from 'react-helmet'; import type { Node as ReactNode } from 'react'; import styles from './Layout.module.scss'; type Props = { children: ReactNode, title: string, description?: string }; const Layout = ({ children, title, description }: Props) => (
{title} {children}
); export default Layout;