使用多个namespace
https://react.i18next.com/latest/usetranslation-hook#usetranslation-params
const { t } = useTranslation(["index", 'common'])
// mo默认使用第一个命名空间
<h4 className='home-review-title'>{t("home_customer_review")}</h4>
// 否则需要特别指明namespace
<h4> {t("contact_us",{ns: 'common'})}</h4>