【笔记】MaterialUI学习笔记

前言

Material UI is an open-source React component library that implements Google’s Material Design.(官网

下载依赖

1
npm install @mui/material @emotion/react @emotion/styled

使用组件

按钮

1
2
3
4
5
6
7
8
9
import Button from '@mui/material/Button';

function Component() {
return (
<Button variant="contained"></Button>
);
}

export default Component;

完成