This project was bootstrapped with Create React App.
On terminal, navigate to the project folder and
- Run
npm install
- Run
npm start
Open http://localhost:3000 to view it in the browser.
This project uses Material-UI's withStyles HOC for dealing with styles. I like using withStyles because:
- It doesn't require any setup.
- Complies with React's component-based system. No stylesheets expanding multiple components.
- Doesn't incurr the performance penalty that inline-styles do.
I could have used CSS or SASS or inline-styles. But I chose this one.