import React from 'react'; import Helmet from 'react-helmet'; import styles from './Layout.module.scss'; const Layout = ({ children, title, description }) => (
{title} {children}
); export default Layout;