import React from "react"; import { translate } from "react-i18next"; import Title from "../../components/layout/Title"; type Props = { // context objects t: string => string }; class GlobalConfig extends React.Component { render() { const { t } = this.props; return ; } } export default translate("config")(GlobalConfig);