mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-06-14 12:10:55 +08:00
17 lines
400 B
TypeScript
17 lines
400 B
TypeScript
import Provider from '@/components/Form/modelForm/Provider.tsx'
|
|
import { Outlet } from 'react-router-dom'
|
|
|
|
const Model = () => {
|
|
return (
|
|
<div className={'flex h-full bg-white'}>
|
|
<div className={'flex-1/5 border-r border-neutral-200 p-2'}>
|
|
<Provider></Provider>
|
|
</div>
|
|
<div className={'flex-4/5'}>
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
export default Model
|