degmods.com/src/routes/index.tsx

18 lines
274 B
TypeScript
Raw Normal View History

2024-07-11 11:45:59 +00:00
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 />
}
]