import { FC } from 'react' import { Text } from '../../../../components/native/typographies' import { View } from '../../../../components/native/views' import DrawerItem from './DrawerItem' import { styles } from './styles' import { DrawerContentProps } from './types' const DrawerContent: FC = ({ ProjectLogo, sections }) => ( {sections.map((section) => ( {section.label} {section.items.map(({ href, Icon, label }) => ( ))} ))} ) export default DrawerContent