e72ec608f4
#95 #95 #95 #95 #95 Merge remote-tracking branch 'origin/main' into feature/095 #95 #95 #95 Co-authored-by: miteruzo <miteruzo@naver.com> Reviewed-on: #311
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
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
|