mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 06:25:45 +01:00
20 lines
431 B
JavaScript
20 lines
431 B
JavaScript
|
|
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);
|