Files
SCM-Manager/scm-ui/src/config/containers/GlobalConfig.js

20 lines
431 B
JavaScript
Raw Normal View History

2018-08-09 10:18:12 +02:00
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<Props> {
render() {
const { t } = this.props;
return <div>Here, global config will be shown</div>;
}
}
export default translate("config")(GlobalConfig);