*MUI X : より複雑なユースケースに対応下コンポーネント群(一部有償)
*Templates : MUIベースで構築されたテンプレート群
==インストール==
<pre>
$ npm install @mui/material @mui/icons-material @emotion/react @emotion/styled
</pre>
*内部的に[https://emotion.sh/docs/introduction Emotion](フレームワークにとらわれず使うことができるCSS in JSのフレームワーク)を利用している
==使用==
<pre>
import { Button } from '@mui/material';
:
<Button variant="text">Text</Button>
</pre>