react-i18next withNamespaces打字稿类型问题

时间:2018-11-27 12:14:03

标签: typescript typescript-typings react-i18next

@withNamespace()始终在以下react类中有键入错误,这是react-i18next键入中的错误吗?还是我的班级定义错误? (我知道使用any并没有帮助,但是any甚至会出现打字问题)

import React, {PureComponent} from 'react';
import {withNamespaces} from "react-i18next";

@withNamespaces()
export default class Test extends PureComponent<any, any> {

    render() {
        const {t} = this.props;
        return <div>{t('textkey')}</div>
    }
}

键入错误:类型'string'不能分配给类型'Element'

0 个答案:

没有答案