250x250
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 | 31 |
Tags
- 헬생아
- 자바
- 값 가져오기
- java
- nvl함수
- SQL
- jstl
- spring
- 코드 이해하기
- REACT
- 전처리도구
- 웹 퍼블리싱
- 그딴건없었다
- react-three-fiber
- SpringBoot
- CSS
- 로그인 기능
- Python
- C언어
- 쿼리 오류
- 코드 시각화
- jsp
- 코드 가시화
- 타입 오류
- 자바스크립트
- MySQL
- 깃허브
- 1인개발
- 문서객체모델
- 렌파이
Archives
- Today
- Total
목록Styled Component (1)
This is it. it's IT.

npm i styled-components 터미널에 입력한다. 그러면 스타일 컴포넌트와 관련된 것들을 다운로드 받을 수 있다. .. . import styled from "styled-components"; App.js 상단에 import해서 가져와준다. import styled from "styled-components"; const Father = styled.div` display: flex; `; const BoxOne = styled.div` background-color: teal; height: 100px; width: 100px; `; const BoxTwo = styled.div` background-color: tomato; height: 100px; width: 100px; `; fu..
Frontend/React.js
2022. 4. 1. 15:56