add the Manage Notifications page and handle the create notification form

This commit is contained in:
Wikzyy
2025-02-25 14:27:54 +07:00
parent 754c67a6d2
commit 5c6feb8ab5
5 changed files with 370 additions and 5 deletions

View File

@ -1,10 +1,17 @@
import { Container, DataGridInner } from '@/components';
import { ManageNotifContextProvider } from './hooks/ManageNotificationContext';
import AddDialog from './blocks/AddDialog';
const ManageNotification = () => {
return (
<div>
<div className="container mx-auto p-5">
<h1 className="text-xl font-medium leading-none text-gray-900">Manage Notification</h1>
</div>
</div>
<ManageNotifContextProvider>
<Container>
<div className="grid gap-5 lg:gap-7.5">
<DataGridInner />
</div>
<AddDialog />
</Container>
</ManageNotifContextProvider>
);
};