Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 실행컨텍스트 동작과정
- html
- 영어
- useRef역할
- 실행컨텍스트 면접
- .current
- Mini Node Server
- 영어공부
- 전역상태
- 실행컨텍스트자바스크립트
- 개발일기
- css
- 실행컨텍스트란
- CORS
- 알고리즘
- npm 에러
- 로컬상태
- state hook
- Block
- .env
- styled-component
- 실행컨텍스트콜스택
- 개발공부
- 실행컨텍스트스택
- 실행컨텍스트 실행과정
- 노마드코더
- CLI
- 객체
- 그래머인유즈
- 고차함수
Archives
- Today
- Total
목록styled-component (1)
오늘도 삽질중
styled-component 연습
컴포넌트 기반 CSS 작성에 적합한 Styled-Component import styled from "styled-components"; // 태그를 렌더링 할 title component를 만듭니다. const Title = styled.h1` font-size: 1.5em; text-align: center; color: teal; `; // 태그를 렌더링 할 Wrapper component를 만듭니다. const Wrapper = styled.section` padding: 4em; background: tomato; `; const Siv = styled.button` background: ${(props) => (props.red ? "palevioletred" : "white")}; color..
카테고리 없음
2021. 10. 27. 16:45