14 行
336 B
TypeScript
14 行
336 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
|
|
import MaterialSidebar from '@/components/MaterialSidebar'
|
|
|
|
import type { FC } from 'react'
|
|
|
|
|
|
const MaterialBasePage: FC = () => (
|
|
<div className="md:flex md:flex-1 overflow-y-auto md:overflow-y-hidden">
|
|
<MaterialSidebar/>
|
|
<Outlet/>
|
|
</div>)
|
|
|
|
export default MaterialBasePage |