mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-23 12:35:51 +00:00
22 lines
557 B
TypeScript
22 lines
557 B
TypeScript
|
|
import CreateNewsPage from './create-news';
|
||
|
|
import { AdminHeaderPage } from '@/app/components/layout/admin/header';
|
||
|
|
import { AdminSideBar } from '@/app/components/layout/admin/sidebar';
|
||
|
|
|
||
|
|
|
||
|
|
const CreateNews = () => {
|
||
|
|
return (
|
||
|
|
<div className="flex h-screen bg-slate-100/50 text-slate-900 font-sans">
|
||
|
|
|
||
|
|
{/* Sidebar Lateral */}
|
||
|
|
<AdminSideBar />
|
||
|
|
|
||
|
|
{/* Main Content Area */}
|
||
|
|
<main className="flex-1 overflow-y-auto">
|
||
|
|
<AdminHeaderPage />
|
||
|
|
<CreateNewsPage />
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default CreateNews;
|