I'm building a react-redux, redux-form application. I'm going to have one page where I want to render a SELECT box which pulls a list of options dynamically from the server. My question is how to architect this simple form in a react-redux app.
Should this SELECT form element be powered by react-redux-form? Should I use redux/reducers to query and store the state which will power the dropdown options? Or is that overkill?