1// Get the core
2npm install @material-ui/core
3
4// Those fancy SVG icons
5npm install @material-ui/icons
6
7// Roboto is the font Material-UI is based around, ofc you can omit this
8<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
9
10// Font Icons
11<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
1<Tab menu={{ pointing: true, className: "wrapped" }} panes={getPanes(sections)} />
2
1
2//install in the terminal
3$ npm install @material-ui/core
4
5// use the CDN
6<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
7
8//on the component
9import { Button } from '@material-ui/core';
10
11function App() {
12 return <Button color="primary">Hello World</Button>;
13}