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' } ]