drawer-items.ts 340 B

123456789101112131415
  1. export interface DrawerItem {
  2. group?: string
  3. text: string
  4. subtext?: string
  5. to?: string
  6. icon?: string
  7. subheader?: boolean
  8. children?: DrawerItem[]
  9. }
  10. export const studentDrawerItems: DrawerItem[] = [
  11. { subheader: true, text: 'learning' },
  12. { text: 'readings', to: 'readings' },
  13. { text: 'assignments', to: 'assignments' }
  14. ]