Massive/route.ts

8 lines
171 B
TypeScript

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