ぼざクリタグ広場 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.
 
 
 
 
 
 

14 lines
336 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. md:h-[calc(100dvh-88px)]">
  7. <MaterialSidebar/>
  8. <Outlet/>
  9. </div>)) satisfies FC