Skip to content

Commit

Permalink
add cms auto-enroll functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
soumitradev committed Aug 5, 2023
1 parent 61bacfe commit 62f6d5a
Show file tree
Hide file tree
Showing 7 changed files with 1,198 additions and 2 deletions.
15 changes: 15 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import Finalize from "./pages/finalize";
import { CookiesProvider } from "react-cookie";
import View from "./pages/view";
import About from "./pages/about";
import CMSOption from "./pages/cmsOption";
import CMS from "./pages/cms";
import CMSExport from "./pages/cmsExport";

const router = createBrowserRouter([
{
Expand Down Expand Up @@ -39,6 +42,18 @@ const router = createBrowserRouter([
path: "/finalize/:id",
element: <Finalize />,
},
{
path: "/cmsoption/:id",
element: <CMSOption />,
},
{
path: "/cmsExport",
element: <CMSExport />,
},
{
path: "/cms/:id",
element: <CMS />,
},
]);
function App() {
return (
Expand Down
Loading

0 comments on commit 62f6d5a

Please sign in to comment.