프리랜서 웹디자이너 웹퍼블리셔RELATION

RELATION 로고

DEV

[ react] styled-components

2024.02.24
북마크 작성자 정보
style-component
최상위 태그인 Component가 생성됨.
https://style-components.com/

1. npm install styled-components  설치
2. import style from 'style-components'; 


Button 최상위 태그인 Component 생성
import styled from 'styled-components'
const styleButton = style`
  color : white;
  background : purple;
`;

Div 최상위 태그인 Component 생성
import styled from 'styled-components';
const StyleButton = style.div`
  color : white;
  background : purple;
`;

이 포스트 공유하기

답글쓰기 전체목록