material core ui react code example

Example 1: npm i material ui core

npm i @material-ui/core

Example 2: install material-ui

npm install @material-ui/core

# Yarn
yarn add @material-ui/core

Example 3: react js material ui

//install in the terminal
$ npm install @material-ui/core

// use the CDN 
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />

//on the component
import { Button } from '@material-ui/core';

function App() {
  return <Button color="primary">Hello World</Button>;
}