I haven't used this component yet in a project, but hard coding any data management dependency reduces the portability of a React component. Generally reusable components store everything in state and expose changes through callbacks like this.props.onChange. If your motivations are to have this be a reusable component I don't think you can keep redux in the mix. Otherwise it looks and feels great!
I haven't used this component yet in a project, but hard coding any data management dependency reduces the portability of a React component. Generally reusable components store everything in state and expose changes through callbacks like
this.props.onChange. If your motivations are to have this be a reusable component I don't think you can keep redux in the mix. Otherwise it looks and feels great!