I have been using redux and redux dev-tools for about a week now and I'm loving it. I'm a big fan of Material Design and so I thought I should give material-ui a try.
It was all good until I used components other than buttons such as DropDownMenu.
The dropdown menu seems to stop working after the initial load. Here's my component:
<DropDownMenu value={locale} onChange={languageChangeHandler}>
<MenuItem value={1} primaryText="English"/>
<MenuItem value={2} primaryText="Arabic"/>
</DropDownMenu>