import React from 'react'; import { StackDivider, VStack } from '@chakra-ui/react'; type LinksListProps = { children: React.ReactNode }; export function LinksList(props: LinksListProps) { const { children } = props; return ( } spacing={0} align='stretch' > {children} ); }