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