Massive/route.ts

8 lines
161 B
TypeScript
Raw Normal View History

2022-09-24 03:29:24 +00:00
import {DrawerParamList} from './App';
export default interface Route {
name: keyof DrawerParamList;
component: React.ComponentType<any>;
icon: string;
}