import { Fragment } from "react"; import Body from "./Body/Body"; import Header from "./Header/Header"; import "./Layout.scss"; const Layout = (props: any) => { return (
{props.children}
{/*
*/}
); }; export default Layout;