import _ from 'lodash/fp' import { Badge, HStack } from '@chakra-ui/react' export let Badges = ({ badges }: { badges: string[] }) => ( {_.map( (badge) => ( {badge} ), badges )} )