36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { Container, DataGridInner } from '@/components';
|
|
import { ManageNotifContextProvider } from './hooks/ManageNotificationContext';
|
|
import AddDialog from './blocks/AddDialog';
|
|
import { Breadcrumbs, Link } from '@mui/material';
|
|
|
|
const ManageNotification = () => {
|
|
return (
|
|
<ManageNotifContextProvider>
|
|
<Container>
|
|
<h1 className="text-xl font-medium leading-none text-gray-900 mb-3">
|
|
Manage Notifications
|
|
</h1>
|
|
<Breadcrumbs sx={{ mb: 2 }}>
|
|
<Link underline="none" color="inherit" href="/">
|
|
<span className="text-sm hover:underline">Dashboard</span>
|
|
</Link>
|
|
|
|
<Link underline="none" color="inherit">
|
|
<span className="text-sm">Notification</span>
|
|
</Link>
|
|
|
|
<Link underline="none" color="inherit">
|
|
<span className="text-sm">Manage Notification</span>
|
|
</Link>
|
|
</Breadcrumbs>
|
|
<div className="grid gap-5 lg:gap-7.5">
|
|
<DataGridInner />
|
|
</div>
|
|
<AddDialog />
|
|
</Container>
|
|
</ManageNotifContextProvider>
|
|
);
|
|
};
|
|
|
|
export default ManageNotification;
|