UNPKG

@reactseed/antd-template

Version:

React seed ant design template for creating react app

31 lines (27 loc) 520 B
import { Route } from '@/typings/router'; /* * Note: * Menu items with children need to set a key starting with "/" * @see https://github.com/umijs/route-utils/blob/master/src/transformRoute/transformRoute.ts#L219 */ const menus: Route[] = [ { path: '/', name: 'Home', }, { name: 'Other', key: '/other', children: [ { path: '/simple', name: 'Simple', }, { path: '/simple2', name: 'Simple2', }, ], }, ]; export default menus;