Massive/route.ts

8 lines
167 B
TypeScript

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