| 123456789101112131415 |
- export interface DrawerItem {
- group?: string
- text: string
- subtext?: string
- to?: string
- icon?: string
- subheader?: boolean
- children?: DrawerItem[]
- }
- export const studentDrawerItems: DrawerItem[] = [
- { subheader: true, text: 'learning' },
- { text: 'readings', to: 'readings' },
- { text: 'assignments', to: 'assignments' }
- ]
|