Material UI

2021. 4. 14. 09:22개발공부/리액트 기초

부트스트랩처럼 이미 다 만들어진 ui를 가져다 쓸 수 있다.

styled-components쓰던 것처럼 사용 가능

 

yarn add @material-ui/core @material-ui/icons

https://material-ui.com/

 

Material-UI: A popular React UI framework

React components for faster and easier web development. Build your own design system, or start with Material Design.

material-ui.com

 Detail.js페이지의 버튼을 바꿀것이니 일단 import해준다.

import Button from "@material-ui/core/Button";
import ButtonGroup from "@mateiral-ui/core/ButtonGroup";

 

버튼을 ButtonGroup 으로 묶어준다.