import { Box, BoxProps, Text } from '@chakra-ui/react' export default function TocNav({ children, title, ...rest }: BoxProps) { return ( {title && ( {title} )} {children} ) }