import { Head } from '@inertiajs/react'; import MainMenu from '@/Components/Menu/MainMenu'; import FlashMessages from '@/Components/Messages/FlashMessages'; import TopHeader from '@/Components/Header/TopHeader'; import BottomHeader from '@/Components/Header/BottomHeader'; interface MainLayoutProps { title?: string; children: React.ReactNode; } export default function MainLayout({ title, children }: MainLayoutProps) { return ( <>
{/** * We need to scroll the content of the page, not the whole page. * So we need to add `scroll-region="true"` to the div below. * * [Read more](https://inertiajs.com/pages#scroll-regions) */}
{children}
); }