Styling
here you can check the libraries used to style the front-end UI for the React App
Material UI
This was the main library used for styling the React app, check it out here material-ui , and it can be easily installed to you React app
// with npm
npm install @material-ui/core
// with yarn
yarn add @material-ui/core
And regarding the Icons used in the app they can also be found here https://material.io/tools/icons/?style=baseline and to add them to any project as SVG (which is used in this project) use
// with npm
npm install @material-ui/icons
// with yarn
yarn add @material-ui/icons
when importing the icons from the web page to use them in the app be aware of how to import them like in the code.
Example: the icon named "more_vert" needs to be imported in the way
import MoreIcon from '@material-ui/icons/MoreVert'
Last updated
Was this helpful?