TypeScript, redux-form and connect
First of all, I'm very new to TS, React & Redux, so sorry if this is an obvious question. I'm trying to modify this example to get a form to load some information. It's using redux-form . I'm trying to figure out how to call connect and redux-form at the same time in the export of the component. Right now it's looking like this: class UserForm extends React.Component<IUserProps, void> { .. } export default ReduxForm.reduxForm({ form: 'user', fields: [ 'userName', 'password', 'firstName', 'lastName', 'email' ], validate: UserForm.validate, })(UserForm); The examples I've seen without TS look