ぼざクリタグ広場 https://hub.nizika.monster
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.
 
 
 
 
 
 

13 lines
305 B

  1. import { Outlet } from 'react-router-dom'
  2. import MaterialSidebar from '@/components/MaterialSidebar'
  3. import type { FC } from 'react'
  4. export default (() => (
  5. <div className="md:flex md:flex-1 overflow-y-auto md:overflow-y-hidden">
  6. <MaterialSidebar/>
  7. <Outlet/>
  8. </div>)) satisfies FC