728x90
반응형
antd 설치 및 사용법 👇
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 = () => {
return (
<>
<ButtonWrapper type="primary">
버튼
</ButtonWrapper>
</>
);
};
export default antdForm;
hover style 적용시에는 :hover { 적용할 css }로 사용함
반응형
'프로그래밍 > React' 카테고리의 다른 글
SWR (0) | 2021.05.28 |
---|---|
정적라우팅(Static Routing)과 동적라우팅(Dynamic Routing) (0) | 2021.05.27 |
Ant Design 사용 방법 (0) | 2021.05.10 |
React Router : replace와 push의 차이점 (0) | 2021.04.30 |
더미데이터 만드는 유용한 라이브러리(shortid, faker) (0) | 2021.04.27 |