Skip to content

Instantly share code, notes, and snippets.

@KTruong008
Created September 17, 2017 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KTruong008/eabbfb06d62ecba7073fe6d8d47b9b86 to your computer and use it in GitHub Desktop.
Save KTruong008/eabbfb06d62ecba7073fe6d8d47b9b86 to your computer and use it in GitHub Desktop.
import React from 'react';
import { reduxForm } from 'redux-form';
import FormComponent from './form.component';
export const FormContainer = props => {
return (
<FormComponent />
);
}
const formConfiguration = {
form: 'my-very-own-form'
}
export default reduxForm(formConfiguration)(FormContainer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment