import { PropsWithChildren } from "react"; import Base from "./LayoutBase"; const Layout: React.FC = ({ children }) => (

The Old Speice Guy

{children} ); export default Layout;