这是我的代码import React from 'react';import { useTranslation } from 'react-i18next'; function MyComponent() { const { t, i18n } = useTranslation(); return <p>{t('my translated text')}</p>}export default MyComponent;我收到错误无法找到模块“react-i18next”。怎么修?
添加回答
举报
0/150
提交
取消