material ui with react js code example
Example: 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>;
}