import React from "react"; import { Page } from "../../components/layout"; import type { History } from "history"; import { translate } from "react-i18next"; type Props = { // context objects t: string => string }; class GlobalConfig extends React.Component { render() { const { t } = this.props; return
Here, global config will be shown
; } } export default translate("config")(GlobalConfig);