import {useTranslation} from 'next-i18next'; interface BulletProps { text: string; } function Bullet(props: BulletProps): JSX.Element { const { t } = useTranslation(["index"]); return (
  • {props.text}
  • ) } export default Bullet;