mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
move groupform to correct folder
This commit is contained in:
23
scm-ui/src/groups/containers/GroupForm.js
Normal file
23
scm-ui/src/groups/containers/GroupForm.js
Normal file
@@ -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<Props, State> {
|
||||
|
||||
render() {
|
||||
return (
|
||||
<form>
|
||||
<InputField label="Name" errorMessage="" onChange={()=>{}} validationError={false}/>
|
||||
</form>
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default GroupForm;
|
||||
Reference in New Issue
Block a user