config-router/typings/routeType.ts

11 lines
199 B
TypeScript

import * as React from 'react';
interface routeType {
path: string;
component: React.ComponentType<any>;
exact?: boolean;
routes?: Array<routeType> | undefined;
}
export default routeType;