import { PropsWithChildren } from "react"; import "./style.css"; const Sidebar: React.FC = () => ( Home/About ); const Layout: React.FC = ({ children }) => (
{children}
); export default Layout;