mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-23 04:25:51 +00:00
19 lines
566 B
TypeScript
19 lines
566 B
TypeScript
import { AdminHeaderPage } from '@/app/components/layout/admin/header';
|
|
import { AdminSideBar } from '@/app/components/layout/admin/sidebar';
|
|
import PanelEditor from './panel-editor';
|
|
|
|
export default function PanelPage() {
|
|
return (
|
|
<div className="flex h-screen bg-slate-100 text-slate-900 font-sans overflow-hidden">
|
|
<AdminSideBar />
|
|
|
|
<div className="flex-1 flex flex-col min-h-0 min-w-0">
|
|
<AdminHeaderPage />
|
|
<div className="flex-1 min-h-0 overflow-hidden">
|
|
<PanelEditor />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|