import Header from "./header" import NavBar from "./navbar" const layoutStyle = { display: "flex", flexDirection: "column", height: "100%", width: "100%" }; const contentStyle = { flex: 1, display: "flex", flexDirection: "column" }; const Layout = props => (
{props.children}
); export default Layout;