cva, tailwindmerge, clsx를 조합하여 재사용 가능한 UI 만들기
😎세가지를 조합하면 아주 멋진 것을 만들 수 있다. https://xionwcfm.tistory.com/322 https://xionwcfm.tistory.com/323 https://xionwcfm.tistory.com/325 지금까지 진행한 세가지 라이브러리에 대한 포스트입니다. 이 세가지를 조합하면 아주 멋있고 유용한 CSS를 작성할 수 있습니다. npm install --save clsx npm install tailwind-merge npm install class-variance-authority 우선 tailwind css는 설치되어있다고 가정하고 위 라이브러리들을 설치해줍니다. 유틸함수를 만들어 주겠습니다. import { ClassValue, clsx } from 'clsx'; impor..
https://xionwcfm.tistory.com/328