styled-components로 ant design 컴포넌트 css 오버라이딩
2021. 5. 11. 20:32
프로그래밍/React
antd 설치 및 사용법 👇 carpet-part1.tistory.com/327 styled-components 설치 npm i styled-components antd css 오버라이딩 할 컴포넌트에 import import styled from 'styled-components'; styled-component 사용법 import React from 'react'; import styled from 'styled-components'; import { Button } from 'antd'; const ButtonWrapper = styled(Button)` background: green; :hover { background: green; } `; const antdForm = () => { retu..
ant-design과 styled-components 적용하기
2021. 4. 7. 21:12
프로그래밍/React
ant design과 styled-components 적용 ant-design, ant-design icons, styled-components 설치 👇 npm i antd styled-components @ant-desing/icons stylesheets import해주기 👇 pages안에 _app.js파일 안에 공통되는 부분 넣어주기 // _app.js import 'antd/dist/antd.css'; 이후 ant-design 홈페이지에서 사용하고 싶은 components 골라서 사용 ant.design/components/overview/ Components Overview - Ant Design antd provides plenty of UI components to enrich your we..