安装
您可以通过 npm 安装 Material-UI 的源码。我们会负责引入样式。
$ npm install @material-ui/core@next @emotion/react @emotion/styled
加载默认的 Roboto 字体。
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
阅读安装文档
使用
Material-UI 组件无需任何额外的设置即可使用,并且不会影响全局变量。
import * as React from 'react';
import { Button } from '@material-ui/core';
function App() {
return <Button>Hello World</Button>;
}
探索文档