styled-components CSS for the Age styled-components.com 기본 설정 npx create-react-app 폴더이름 // react-app 설치 npm i styled-components // styled-components 라이브러리 import styled from "styled-components"; const Father = styled.div` display: flex; `; const BoxOne = styled.div` background-color: teal; width: 100px; height: 100px; `; const BoxTwo = styled.div` background-color: tomato; width: 100px; height: ..