import React from 'react' import List from '@mui/material/List' import ListSubheader from '@mui/material/ListSubheader' import { NavMenuStoryblok } from '../../../typings/generated/components-schema' import { DrawerButton } from './DrawerButton' type DrawerNavListProps = { content: NavMenuStoryblok } export function DrawerNavList(props: DrawerNavListProps): JSX.Element { const { content } = props return ( {content.header}}> {content.body?.map((blok) => ( ))} ) }