show settings and let them modify

This commit is contained in:
Maren Süwer
2018-08-13 16:33:56 +02:00
parent 5767000eb5
commit 27ae4dac1a
5 changed files with 415 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
// @flow
import React from "react";
import { translate } from "react-i18next";
import { Checkbox, InputField } from "../../../components/forms/index";
import Subtitle from "../../../components/layout/Subtitle";
type Props = {
adminGroups: string[],
adminUsers: string[],
t: string => string,
onChange: (boolean, any, string) => void
};
//TODO: Einbauen!
class AdminSettings extends React.Component<Props> {
render() {
const {
t,
adminGroups,
adminUsers
} = this.props;
return (
null
);
}
}
export default translate("config")(AdminSettings);