I\'m trying to build simple React app using Material-UI library.
I\'ve used the example app for create-react-app and try to add Router to it so I can navigate between compon
I have a basic boilerplate project example, you can clone and i give it a try.
The project is using :
- create-react-app
- react-router 3.0.2
- material-ui 0.19.4
MaterialUI example:
class App extends Component {
render() {
return (
< MuiThemeProvider >
{this.props.children}
)
}
}
Rotes example:
const Routes = (props) => (
)