This repository has been archived on 2022-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
react-template/src/router/routes.js

27 lines
558 B
JavaScript

import { RouteCode, RoutePath } from '../config/routeConstants'
export const defaultRoutes = [
{
code: RouteCode.ROOT,
title: 'root',
path: '/',
component: RoutePath.ROOT,
children: [
{
code: RouteCode.LAYOUT_BASIC,
title: 'home',
path: 'home',
component: RoutePath.LAYOUT_BASIC,
children: [
{
code: RouteCode.PAGE_HOME,
title: 'index',
path: 'index',
component: RoutePath.PAGE_HOME,
},
],
},
],
},
]