feat: 添加container列表

This commit is contained in:
2024-09-17 23:56:47 +08:00
parent 596c50cd0b
commit a36a390d25
16 changed files with 969 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
import { Outlet } from 'react-router';
export const Main = () => {
return (
<div className='flex w-full h-full flex-col bg-gray-200'>
<div className='h-12 bg-white p-2 mb-2'>Container</div>
<div
className='flex'
style={{
height: 'calc(100vh - 4rem)',
}}>
<div className='flex-grow overflow-hidden mx-2'>
<div className='w-full h-full rounded-lg'>
<Outlet />
</div>
</div>
</div>
</div>
);
};