We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa5e9ce commit 6ffaf32Copy full SHA for 6ffaf32
1 file changed
web/src/utils/router.tsx
@@ -3,13 +3,15 @@ import Layout from "../layouts/Layout";
3
import Landing from "../components/internal-ui/Landing";
4
import BasicGen from "../features/basicGen/BasicGen";
5
import { ENDPOINTS } from "../features/constants";
6
+import BugFix from "../features/bugFix/BugFix";
7
export const router = createBrowserRouter([
8
{
9
path: "/",
10
element: <Layout />,
11
children: [
12
{ index: true, element: <Landing /> },
13
{ path: ENDPOINTS.postBasic, element: <BasicGen /> },
14
+ { path: ENDPOINTS.postFix, element: <BugFix /> },
15
],
16
},
17
]);
0 commit comments