import React from "react"; import "../App.css"; import { ToastContainer } from "react-toastify"; import Header from "../components/Header"; import Sidebar from "../components/Sidebar"; type LayoutProps = { children: React.ReactNode; }; const Layout: React.FC = ({ children }) => { return (
{/* Sidebar */}
{/* Main */}
{children}
{/* Mobile sidebar at bottom */}
); }; export default Layout;