Skip to content

Commit 6ffaf32

Browse files
committed
feat(add route): add bug fix route
1 parent fa5e9ce commit 6ffaf32

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

web/src/utils/router.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ import Layout from "../layouts/Layout";
33
import Landing from "../components/internal-ui/Landing";
44
import BasicGen from "../features/basicGen/BasicGen";
55
import { ENDPOINTS } from "../features/constants";
6+
import BugFix from "../features/bugFix/BugFix";
67
export const router = createBrowserRouter([
78
{
89
path: "/",
910
element: <Layout />,
1011
children: [
1112
{ index: true, element: <Landing /> },
1213
{ path: ENDPOINTS.postBasic, element: <BasicGen /> },
14+
{ path: ENDPOINTS.postFix, element: <BugFix /> },
1315
],
1416
},
1517
]);

0 commit comments

Comments
 (0)