# styled-components 설치 => npm i styled-components # styled-components를 사용하는 이유 위 아래를 비교해보면 styled-components를 사용했을때 코드가 깔끔하고 한눈에 들어온다. 방법은 styled를 import하고 그 뒤에 점을 찍어서 유효한 html 태그를 사용하면 된다. 그리고 백틱( ` ` ) 내부에는 css에 관한 내용을 적는다. import styled from "styled-components"; function App(){ return( ); } export default App; import styled from "styled-components"; const Father = styled.div` display: flex; `..