这是我的代码
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”。怎么修?
大话西游666
相关分类