import { FC, PropsWithChildren } from "react"; import Body from "./Body"; import Content from "./Content"; import Header from "./Header"; const Layout: FC = ({ children }) => { return (
{children}
); }; export default Layout;