UNPKG

@reactseed/template-antd

Version:

React seed ant design template for creating react app

9 lines (6 loc) 274 B
import { Route as LayoutRoute } from '@ant-design/pro-layout/es/typing'; import type { IndexRouteProps, PathRouteProps } from 'react-router-dom'; export interface Route extends LayoutRoute { paths?: string[]; } export type RouteProps = IndexRouteProps | PathRouteProps;