Massive/route.ts

8 lines
167 B
TypeScript
Raw Normal View History

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