Reconmap/web-client

View on GitHub
src/components/notifications/Routes.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Route } from "react-router-dom";
import NotificationsList from "./List";

const NotificationsRoutes = [
    <Route path={`/notifications`} element={<NotificationsList />} />,
];

export default NotificationsRoutes;