feat: change deck edit style and add agent

This commit is contained in:
2024-09-28 02:52:56 +08:00
parent 2e55d718a8
commit fa055d15cc
14 changed files with 620 additions and 33 deletions

View File

@@ -0,0 +1,14 @@
import { Outlet } from 'react-router';
export const Main = () => {
return (
<div className='flex w-full h-full flex-col bg-gray-200'>
<div className='layout-menu'>Agent</div>
<div className='flex-grow w-full'>
<div className='w-full h-full overflow-hidden'>
<Outlet />
</div>
</div>
</div>
);
};