import React from 'react'; import {Field, reduxForm} from '../../index'; const SimpleForm = (props) => { const {handleSubmit} = props; return (
); }; export default reduxForm({ form: 'step1', destroyOnUnmount: false, wizard: 'fieldArrayWizard', })(SimpleForm);