move groupform to correct folder

This commit is contained in:
Maren Süwer
2018-07-31 15:18:57 +02:00
parent 89618a1526
commit f72cd23f48
2 changed files with 2 additions and 2 deletions

View 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;