test(notifications mgt): added new mgt for notifications to turn off and on in the ui
This commit is contained in:
14
frontend/src/routes/_admin/notificationMGT.tsx
Normal file
14
frontend/src/routes/_admin/notificationMGT.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import NotificationMGT from "@/components/admin/notificationMGT/NotificationMGT";
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/_admin/notificationMGT")({
|
||||
component: RouteComponent,
|
||||
});
|
||||
|
||||
function RouteComponent() {
|
||||
return (
|
||||
<div>
|
||||
<NotificationMGT />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user