added global navigation

This commit is contained in:
Maren Süwer
2018-08-09 10:18:12 +02:00
parent b03e058c6a
commit 4edf5d6f35
2 changed files with 67 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
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);