Frontend/CSS

Antd (Ant Design) CSS 간단하게 정리해보자

섕걍 2023. 3. 18. 18:52

공식주소

https://ant.design/

 

Ant Design - The world's second most popular React UI framework

Ant Design 5.0 Ant Design 5.0 use CSS-in-JS technology to provide dynamic & mix theme ability. And which use component level CSS-in-JS solution get your application a better performance.

ant.design

설치

npm i antd

간단한 사용

import { Button } from "antd";

      <Button>TEST DEFAULT</Button>
      <Button type="primary">TEST PRIMARY</Button>

antd에서 Button을 import해주고

공식문서를 보고 사용하면 된다