test(notifications mgt): added new mgt for notifications to turn off and on in the ui

This commit is contained in:
2025-04-13 10:22:40 -05:00
parent 148919a411
commit 9baeb1ceff
3 changed files with 48 additions and 0 deletions

View 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>
);
}