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 사용 방법
2021. 5. 10. 20:01
프로그래밍/React
💡 Ant Design 설치하기 npm i antd 💡 css 적용을 위해 공통 컴포넌트에 'antd/dist/antd.css' import 하기 // pages/_app.js import 'antd/dist/antd.css'; 💡 Ant Design 사용하기 1️⃣ 필요한 컴포넌트 import // components/AppLayout.js import { Menu } from 'antd'; 2️⃣ 컴포넌트 사용 // components/AppLayout.js import React from 'react'; import { Menu } from 'antd'; const AppLayout = () => { return ( 메뉴1 메뉴2 ); }; export default AppLayout; 3️⃣ An..