Notice
Recent Posts
Recent Comments
Link
목록2025/01/15 (1)
오늘도 코딩하나
[React] Styled-Component로 동적 스타일링과 테마 적용하기
강의 내용 요약 : 강의 링크 #2.0 ~ #2.7 ○ styled-componentimport styled from "styled-components";const Father = styled.div` display: flex;`;const Box = styled.div` background-color: ${(props) => props.bgColor}; width: 100px; height: 100px;`;const Circle = styled(Box)` border-radius: 50px;`;function App() { return ( );}export default App;style과 구현 부분으로 나누어지고, 구현 부분은 훨씬 가독성이 좋아진다.b..
React/노마드코더
2025. 1. 15. 02:24