mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-23 12:35:51 +00:00
17 lines
510 B
TypeScript
17 lines
510 B
TypeScript
import { AdminHeaderPage } from '@/app/components/layout/admin/header';
|
|
import { AdminSideBar } from '@/app/components/layout/admin/sidebar';
|
|
import ManageCategoryClient from './manage-category-client';
|
|
|
|
export default function ManageCategoryPage() {
|
|
return (
|
|
<div className="flex h-screen bg-slate-50 text-slate-900">
|
|
<AdminSideBar />
|
|
|
|
<div className="flex-1 flex flex-col min-h-0 overflow-hidden">
|
|
<AdminHeaderPage />
|
|
<ManageCategoryClient />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|