generated from chiffre-io/template-library
-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathroutes.ts
39 lines (37 loc) · 3 KB
/
routes.ts
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
import { type RouteConfig, layout, route } from '@react-router/dev/routes'
export default [
// prettier-ignore
layout('layout.tsx', [
// Shared E2E tests
route('/hash-preservation', './routes/hash-preservation.tsx'),
route('/basic-io/useQueryState', './routes/basic-io.useQueryState.tsx'),
route('/basic-io/useQueryStates', './routes/basic-io.useQueryStates.tsx'),
route('/linking/useQueryState', './routes/linking.useQueryState.tsx'),
route('/linking/useQueryState/other', './routes/linking.useQueryState.other.tsx'),
route('/linking/useQueryStates', './routes/linking.useQueryStates.tsx'),
route('/linking/useQueryStates/other', './routes/linking.useQueryStates.other.tsx'),
route('/push/useQueryState', './routes/push.useQueryState.tsx'),
route('/push/useQueryStates', './routes/push.useQueryStates.tsx'),
route('/routing/useQueryState', './routes/routing.useQueryState.tsx'),
route('/routing/useQueryState/other', './routes/routing.useQueryState.other.tsx'),
route('/routing/useQueryStates', './routes/routing.useQueryStates.tsx'),
route('/routing/useQueryStates/other', './routes/routing.useQueryStates.other.tsx'),
route('/shallow/useQueryState', './routes/shallow.useQueryState.tsx'),
route('/shallow/useQueryStates', './routes/shallow.useQueryStates.tsx'),
route('/loader', './routes/loader.tsx'),
route('/form/useQueryState', './routes/form.useQueryState.tsx'),
route('/form/useQueryStates', './routes/form.useQueryStates.tsx'),
route('/referential-stability/useQueryState', './routes/referential-stability.useQueryState.tsx'),
route('/referential-stability/useQueryStates', './routes/referential-stability.useQueryStates.tsx'),
route('/fog-of-war', './routes/fog-of-war._index.tsx'),
route('/fog-of-war/result', './routes/fog-of-war.result.tsx'),
route('/conditional-rendering/useQueryState', './routes/conditional-rendering.useQueryState.tsx'),
route('/conditional-rendering/useQueryStates', './routes/conditional-rendering.useQueryStates.tsx'),
route('/scroll', './routes/scroll.tsx'),
route('/render-count/:hook/:shallow/:history/:startTransition/no-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.no-loader.tsx'),
route('/render-count/:hook/:shallow/:history/:startTransition/sync-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.sync-loader.tsx'),
route('/render-count/:hook/:shallow/:history/:startTransition/async-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.async-loader.tsx'),
// Reproductions
route('/repro-839', './routes/repro-839.tsx'),
])
] satisfies RouteConfig