Massive/route.ts

8 lines
173 B
TypeScript
Raw Normal View History

2023-06-27 03:16:59 +00:00
import { DrawerParamList } from './drawer-param-list'
2022-09-24 03:29:24 +00:00
export default interface Route {
2022-10-31 04:22:08 +00:00
name: keyof DrawerParamList
component: React.ComponentType<any>
icon: string
2022-09-24 03:29:24 +00:00
}