[CSS] Styled Components

eunbi·2020년 4월 24일
0

CSS

목록 보기
2/10

설치

npm install --save styled-components

createGlobalStyle

import {createGlobalStyle} from 'styled-components';


 export const GlobalStyled = createGlobalStyle`
 
 body{
 	margin:0;
 }`

withComponent

Button.withComponent('a')``

(button에서 확장해서 a태그 포함)

확장 스타일링

const Anchor = styled(Button.withComponent("a"))`
 color: black;
`;
profile
프론트엔드 개발자입니다 :)

0개의 댓글