import SideBar from "./sidebar/sidebar";
const Layout = ({ children }: { children: React.ReactNode }) => {
return (
{/* sidebar for tablet & desktop - static in nature throughout all the pages */}
{/* children is the content of the page */}
{children}
);
};
export default Layout;