Move organization form to functional component

This commit is contained in:
Jake McDermott
2019-12-18 08:40:47 -05:00
parent 2f9742e9de
commit 057320aed3
6 changed files with 311 additions and 360 deletions

View File

@@ -50,8 +50,8 @@ function OrganizationAdd({ i18n }) {
<Config>
{({ me }) => (
<OrganizationForm
handleSubmit={handleSubmit}
handleCancel={handleCancel}
onSubmit={handleSubmit}
onCancel={handleCancel}
me={me || {}}
/>
)}