You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import { Outlet } from 'react-router-dom'
-
- import MaterialSidebar from '@/components/MaterialSidebar'
-
- import type { FC } from 'react'
-
-
- export default (() => (
- <div className="md:flex md:flex-1 overflow-y-auto md:overflow-y-hidden">
- <MaterialSidebar/>
- <Outlet/>
- </div>)) satisfies FC
|