Skip to content

변수명 규칙

lseunghee edited this page Oct 11, 2021 · 3 revisions

styled components 변수명 규칙

변수명

const Join = styled.button`
	color : red;
`;

antd를 적용한 변수명

const ButtonAntd = styled(Button)`
        color : blue;
`;