Massive/route.ts

8 lines
177 B
TypeScript
Raw Normal View History

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