generated from kevisual/vite-react-template
- Created a new page for managing domains with a table view and modal for editing. - Implemented Zustand store for domain state management including fetching, updating, and deleting domains. - Added components for displaying information cards with search functionality. - Integrated API calls for fetching CNB Board live data including build, repo, pull, NPC, and comment information. - Established routing for the CNB Board page.
96 lines
2.6 KiB
TypeScript
96 lines
2.6 KiB
TypeScript
/* 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 DemoRouteImport } from './routes/demo'
|
|
import { Route as CnbBoardRouteImport } from './routes/cnb-board'
|
|
import { Route as IndexRouteImport } from './routes/index'
|
|
|
|
const DemoRoute = DemoRouteImport.update({
|
|
id: '/demo',
|
|
path: '/demo',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const CnbBoardRoute = CnbBoardRouteImport.update({
|
|
id: '/cnb-board',
|
|
path: '/cnb-board',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const IndexRoute = IndexRouteImport.update({
|
|
id: '/',
|
|
path: '/',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
|
|
export interface FileRoutesByFullPath {
|
|
'/': typeof IndexRoute
|
|
'/cnb-board': typeof CnbBoardRoute
|
|
'/demo': typeof DemoRoute
|
|
}
|
|
export interface FileRoutesByTo {
|
|
'/': typeof IndexRoute
|
|
'/cnb-board': typeof CnbBoardRoute
|
|
'/demo': typeof DemoRoute
|
|
}
|
|
export interface FileRoutesById {
|
|
__root__: typeof rootRouteImport
|
|
'/': typeof IndexRoute
|
|
'/cnb-board': typeof CnbBoardRoute
|
|
'/demo': typeof DemoRoute
|
|
}
|
|
export interface FileRouteTypes {
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fullPaths: '/' | '/cnb-board' | '/demo'
|
|
fileRoutesByTo: FileRoutesByTo
|
|
to: '/' | '/cnb-board' | '/demo'
|
|
id: '__root__' | '/' | '/cnb-board' | '/demo'
|
|
fileRoutesById: FileRoutesById
|
|
}
|
|
export interface RootRouteChildren {
|
|
IndexRoute: typeof IndexRoute
|
|
CnbBoardRoute: typeof CnbBoardRoute
|
|
DemoRoute: typeof DemoRoute
|
|
}
|
|
|
|
declare module '@tanstack/react-router' {
|
|
interface FileRoutesByPath {
|
|
'/demo': {
|
|
id: '/demo'
|
|
path: '/demo'
|
|
fullPath: '/demo'
|
|
preLoaderRoute: typeof DemoRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/cnb-board': {
|
|
id: '/cnb-board'
|
|
path: '/cnb-board'
|
|
fullPath: '/cnb-board'
|
|
preLoaderRoute: typeof CnbBoardRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/': {
|
|
id: '/'
|
|
path: '/'
|
|
fullPath: '/'
|
|
preLoaderRoute: typeof IndexRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
}
|
|
}
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
IndexRoute: IndexRoute,
|
|
CnbBoardRoute: CnbBoardRoute,
|
|
DemoRoute: DemoRoute,
|
|
}
|
|
export const routeTree = rootRouteImport
|
|
._addFileChildren(rootRouteChildren)
|
|
._addFileTypes<FileRouteTypes>()
|