I've created a form using Ant design's Form.create() and i want to access it's field's values in another component. Using redux, i can do that using:
function mapStateToProps(state) {
return {
formStates: getFormValues('form')(state),
};
}
is there a way to do that for Ant design's Forms?