import React from "react" import { Flex, Box } from "rebass" const Layout = ({ children }) => { return ( {children} ) } export default Layout