Skip to content

Instantly share code, notes, and snippets.

@redgeoff
Created November 5, 2018 17:21
Show Gist options
  • Save redgeoff/8b97ded0d402be3efce7d8f70ac63256 to your computer and use it in GitHub Desktop.
Save redgeoff/8b97ded0d402be3efce7d8f70ac63256 to your computer and use it in GitHub Desktop.
Autogenerating Forms - Render
ReactDOM.render(
<Component
definition={definition}
onSubmit={({ component }) => {
alert(JSON.stringify(component.getValues()));
}}
/>,
document.getElementById("root")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment