mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 06:25:45 +01:00
added global navigation
This commit is contained in:
19
scm-ui/src/config/containers/GlobalConfig.js
Normal file
19
scm-ui/src/config/containers/GlobalConfig.js
Normal 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);
|
||||
Reference in New Issue
Block a user