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

[ 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;
`;
답글쓰기 전체목록

이 포스트 공유하기

  • 페이스북에 공유하기
  • 트위터에 공유하기
  • 네이버 블로그 카페에 공유하기
  • 네이버 밴드에 공유하기

코멘트 쓰기

코멘트를 입력해주세요
LOGIN JOIN