@@ -2,11 +2,15 @@ import { JSX, lazy } from 'react'
2
2
3
3
// prettier-ignore
4
4
const routes : Record < string , React . LazyExoticComponent < ( ) => JSX . Element > > = {
5
- '/hash-preservation' : lazy ( ( ) => import ( './routes/hash-preservation' ) ) ,
6
- '/basic-io/useQueryState' : lazy ( ( ) => import ( './routes/basic-io.useQueryState' ) ) ,
7
- '/basic-io/useQueryStates' : lazy ( ( ) => import ( './routes/basic-io.useQueryStates' ) ) ,
8
- '/push/useQueryState' : lazy ( ( ) => import ( './routes/push.useQueryState' ) ) ,
9
- '/push/useQueryStates' : lazy ( ( ) => import ( './routes/push.useQueryStates' ) ) ,
5
+ '/hash-preservation' : lazy ( ( ) => import ( './routes/hash-preservation' ) ) ,
6
+ '/basic-io/useQueryState' : lazy ( ( ) => import ( './routes/basic-io.useQueryState' ) ) ,
7
+ '/basic-io/useQueryStates' : lazy ( ( ) => import ( './routes/basic-io.useQueryStates' ) ) ,
8
+ '/push/useQueryState' : lazy ( ( ) => import ( './routes/push.useQueryState' ) ) ,
9
+ '/push/useQueryStates' : lazy ( ( ) => import ( './routes/push.useQueryStates' ) ) ,
10
+ '/linking/useQueryState' : lazy ( ( ) => import ( './routes/linking.useQueryState' ) ) ,
11
+ '/linking/useQueryState/other' : lazy ( ( ) => import ( './routes/linking.useQueryState.other' ) ) ,
12
+ '/linking/useQueryStates' : lazy ( ( ) => import ( './routes/linking.useQueryStates' ) ) ,
13
+ '/linking/useQueryStates/other' : lazy ( ( ) => import ( './routes/linking.useQueryStates.other' ) ) ,
10
14
}
11
15
12
16
export function Router ( ) {
0 commit comments