Massive/route.ts

8 lines
176 B
TypeScript

import {DrawerParamList} from './drawer-param-list';
export default interface Route {
name: keyof DrawerParamList;
component: React.ComponentType<any>;
icon?: string;
}