Most simple components created
This commit is contained in:
210
src/routeTree.gen.ts
Normal file
210
src/routeTree.gen.ts
Normal file
@@ -0,0 +1,210 @@
|
||||
/* eslint-disable */
|
||||
|
||||
// @ts-nocheck
|
||||
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
|
||||
// This file was automatically generated by TanStack Router.
|
||||
// You should NOT make any changes in this file as it will be overwritten.
|
||||
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
||||
|
||||
import { Route as rootRouteImport } from './routes/__root'
|
||||
import { Route as IndexRouteImport } from './routes/index'
|
||||
import { Route as TabIndexRouteImport } from './routes/tab/index'
|
||||
import { Route as SwitchIndexRouteImport } from './routes/switch/index'
|
||||
import { Route as ModalIndexRouteImport } from './routes/modal/index'
|
||||
import { Route as MessageIndexRouteImport } from './routes/message/index'
|
||||
import { Route as LoadingIndexRouteImport } from './routes/loading/index'
|
||||
import { Route as InputIndexRouteImport } from './routes/input/index'
|
||||
import { Route as ButtonsIndexRouteImport } from './routes/buttons/index'
|
||||
|
||||
const IndexRoute = IndexRouteImport.update({
|
||||
id: '/',
|
||||
path: '/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const TabIndexRoute = TabIndexRouteImport.update({
|
||||
id: '/tab/',
|
||||
path: '/tab/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const SwitchIndexRoute = SwitchIndexRouteImport.update({
|
||||
id: '/switch/',
|
||||
path: '/switch/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const ModalIndexRoute = ModalIndexRouteImport.update({
|
||||
id: '/modal/',
|
||||
path: '/modal/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const MessageIndexRoute = MessageIndexRouteImport.update({
|
||||
id: '/message/',
|
||||
path: '/message/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const LoadingIndexRoute = LoadingIndexRouteImport.update({
|
||||
id: '/loading/',
|
||||
path: '/loading/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const InputIndexRoute = InputIndexRouteImport.update({
|
||||
id: '/input/',
|
||||
path: '/input/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const ButtonsIndexRoute = ButtonsIndexRouteImport.update({
|
||||
id: '/buttons/',
|
||||
path: '/buttons/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
|
||||
export interface FileRoutesByFullPath {
|
||||
'/': typeof IndexRoute
|
||||
'/buttons': typeof ButtonsIndexRoute
|
||||
'/input': typeof InputIndexRoute
|
||||
'/loading': typeof LoadingIndexRoute
|
||||
'/message': typeof MessageIndexRoute
|
||||
'/modal': typeof ModalIndexRoute
|
||||
'/switch': typeof SwitchIndexRoute
|
||||
'/tab': typeof TabIndexRoute
|
||||
}
|
||||
export interface FileRoutesByTo {
|
||||
'/': typeof IndexRoute
|
||||
'/buttons': typeof ButtonsIndexRoute
|
||||
'/input': typeof InputIndexRoute
|
||||
'/loading': typeof LoadingIndexRoute
|
||||
'/message': typeof MessageIndexRoute
|
||||
'/modal': typeof ModalIndexRoute
|
||||
'/switch': typeof SwitchIndexRoute
|
||||
'/tab': typeof TabIndexRoute
|
||||
}
|
||||
export interface FileRoutesById {
|
||||
__root__: typeof rootRouteImport
|
||||
'/': typeof IndexRoute
|
||||
'/buttons/': typeof ButtonsIndexRoute
|
||||
'/input/': typeof InputIndexRoute
|
||||
'/loading/': typeof LoadingIndexRoute
|
||||
'/message/': typeof MessageIndexRoute
|
||||
'/modal/': typeof ModalIndexRoute
|
||||
'/switch/': typeof SwitchIndexRoute
|
||||
'/tab/': typeof TabIndexRoute
|
||||
}
|
||||
export interface FileRouteTypes {
|
||||
fileRoutesByFullPath: FileRoutesByFullPath
|
||||
fullPaths:
|
||||
| '/'
|
||||
| '/buttons'
|
||||
| '/input'
|
||||
| '/loading'
|
||||
| '/message'
|
||||
| '/modal'
|
||||
| '/switch'
|
||||
| '/tab'
|
||||
fileRoutesByTo: FileRoutesByTo
|
||||
to:
|
||||
| '/'
|
||||
| '/buttons'
|
||||
| '/input'
|
||||
| '/loading'
|
||||
| '/message'
|
||||
| '/modal'
|
||||
| '/switch'
|
||||
| '/tab'
|
||||
id:
|
||||
| '__root__'
|
||||
| '/'
|
||||
| '/buttons/'
|
||||
| '/input/'
|
||||
| '/loading/'
|
||||
| '/message/'
|
||||
| '/modal/'
|
||||
| '/switch/'
|
||||
| '/tab/'
|
||||
fileRoutesById: FileRoutesById
|
||||
}
|
||||
export interface RootRouteChildren {
|
||||
IndexRoute: typeof IndexRoute
|
||||
ButtonsIndexRoute: typeof ButtonsIndexRoute
|
||||
InputIndexRoute: typeof InputIndexRoute
|
||||
LoadingIndexRoute: typeof LoadingIndexRoute
|
||||
MessageIndexRoute: typeof MessageIndexRoute
|
||||
ModalIndexRoute: typeof ModalIndexRoute
|
||||
SwitchIndexRoute: typeof SwitchIndexRoute
|
||||
TabIndexRoute: typeof TabIndexRoute
|
||||
}
|
||||
|
||||
declare module '@tanstack/react-router' {
|
||||
interface FileRoutesByPath {
|
||||
'/': {
|
||||
id: '/'
|
||||
path: '/'
|
||||
fullPath: '/'
|
||||
preLoaderRoute: typeof IndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/tab/': {
|
||||
id: '/tab/'
|
||||
path: '/tab'
|
||||
fullPath: '/tab'
|
||||
preLoaderRoute: typeof TabIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/switch/': {
|
||||
id: '/switch/'
|
||||
path: '/switch'
|
||||
fullPath: '/switch'
|
||||
preLoaderRoute: typeof SwitchIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/modal/': {
|
||||
id: '/modal/'
|
||||
path: '/modal'
|
||||
fullPath: '/modal'
|
||||
preLoaderRoute: typeof ModalIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/message/': {
|
||||
id: '/message/'
|
||||
path: '/message'
|
||||
fullPath: '/message'
|
||||
preLoaderRoute: typeof MessageIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/loading/': {
|
||||
id: '/loading/'
|
||||
path: '/loading'
|
||||
fullPath: '/loading'
|
||||
preLoaderRoute: typeof LoadingIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/input/': {
|
||||
id: '/input/'
|
||||
path: '/input'
|
||||
fullPath: '/input'
|
||||
preLoaderRoute: typeof InputIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/buttons/': {
|
||||
id: '/buttons/'
|
||||
path: '/buttons'
|
||||
fullPath: '/buttons'
|
||||
preLoaderRoute: typeof ButtonsIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const rootRouteChildren: RootRouteChildren = {
|
||||
IndexRoute: IndexRoute,
|
||||
ButtonsIndexRoute: ButtonsIndexRoute,
|
||||
InputIndexRoute: InputIndexRoute,
|
||||
LoadingIndexRoute: LoadingIndexRoute,
|
||||
MessageIndexRoute: MessageIndexRoute,
|
||||
ModalIndexRoute: ModalIndexRoute,
|
||||
SwitchIndexRoute: SwitchIndexRoute,
|
||||
TabIndexRoute: TabIndexRoute,
|
||||
}
|
||||
export const routeTree = rootRouteImport
|
||||
._addFileChildren(rootRouteChildren)
|
||||
._addFileTypes<FileRouteTypes>()
|
||||
Reference in New Issue
Block a user