18 lines
274 B
TypeScript
18 lines
274 B
TypeScript
|
import { HomePage } from '../pages/home'
|
||
|
|
||
|
export const appRoutes: Record<string, string> = {
|
||
|
index: '/',
|
||
|
home: '/home'
|
||
|
}
|
||
|
|
||
|
export const routes = [
|
||
|
{
|
||
|
path: appRoutes.index,
|
||
|
element: <HomePage />
|
||
|
},
|
||
|
{
|
||
|
path: appRoutes.home,
|
||
|
element: <HomePage />
|
||
|
}
|
||
|
]
|