diff --git a/scm-ui/src/groups/containers/AddGroup.js b/scm-ui/src/groups/containers/AddGroup.js new file mode 100644 index 0000000000..2a02f328c9 --- /dev/null +++ b/scm-ui/src/groups/containers/AddGroup.js @@ -0,0 +1,24 @@ +//@flow +import React from 'react'; + +import Page from "../../components/layout/Page" +import { translate } from "react-i18next"; +import GroupForm from '../../users/containers/GroupForm'; + +export interface Props { + t: string => string +} + +export interface State { +} + +class AddGroup extends React.Component { + + render() { + const { t } = this.props; + return
+ } + +} + +export default translate("groups")(AddGroup); \ No newline at end of file diff --git a/scm-ui/src/users/containers/GroupForm.js b/scm-ui/src/users/containers/GroupForm.js new file mode 100644 index 0000000000..f65278bcf5 --- /dev/null +++ b/scm-ui/src/users/containers/GroupForm.js @@ -0,0 +1,23 @@ +//@flow +import React from 'react'; + +import InputField from "../../components/forms/InputField" +export interface Props { +} + +export interface State { +} + +class GroupForm extends React.Component { + + render() { + return ( +
+ {}} validationError={false}/> + + ) + } + +} + +export default GroupForm; \ No newline at end of file