How to install Material-UI

Material-UI is a React U.I component library. It is an open-source project released in 2014 with components that can easily and flexibly be used in your React application. The library features React components that implement Google Material Design. Material-UI components work in isolation, meaning they are self-supporting and only inject the styles they need to display. These components don’t rely on any global style-sheets.

Installation

Material U.I can be installed using yarn or npm. Go to the directory of your existing React app and run:

$ npm install @material-ui/core
//with yarn
$ yarn add @material-ui/core

Free Resources