-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.tsx
48 lines (44 loc) · 945 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { createBrowserRouter } from 'react-router-dom'
import type { AsRouteConfig, IRoutes } from 'react-router-typing'
import React from 'react'
import { asBrowserRouter } from 'react-router-typing'
import { Nav } from './nav'
const routes = [
{
path: "/",
element: (
<div>
<h2>Home</h2>
<Nav />
</div>
),
},
{
path: "/example",
element: <div>Example</div>,
},
{
path: "/nests",
children: [
{
path: "",
element: (
<div>Nest List Page</div>
),
},
{
path: ":nestId",
element: (
<div>Nest Child Page</div>
),
},
],
},
] as const satisfies IRoutes
export type RouteConfig = AsRouteConfig<typeof routes>
export const router = createBrowserRouter(asBrowserRouter(routes))
/**
* createRoot(document.getElementById("root")).render(
* <RouterProvider router={router} />
* );
*/