React (23) 썸네일형 리스트형 [Udemy] Section63 (620 ~ 621. Map으로 배열 렌더링) 보호되어 있는 글입니다. [Udemy] Section63 (620 ~ 621. 동적 스타일 Props) 보호되어 있는 글입니다. [Udemy] Section63 (617 ~ 619) & Section25 보호되어 있는 글입니다. [Udemy] Section63 (615 ~ 616. property) 보호되어 있는 글입니다. [Udemy] Section61 & 62 (리액트 프로젝트) 보호되어 있는 글입니다. [Udemy] Section61 (JSX) 보호되어 있는 글입니다. [Udemy] Section60 (리액트) 보호되어 있는 글입니다. [React] Styled-Components 참고 (props warning / Transient Props) * 비표준 props가 DOM에 전달되는 경우 버튼을 누르면 isVisible 상태값이 변경되며 Box 컴포넌트가 나타나고 사라지는 css 스타일을 적용.const App = () => { const [isVisible, setIsVisible] = useState(true); return ( setIsVisible(!isVisible)}>Toggle Box );};const Box = styled.div` background-color: lightblue; width: 200px; height: 200px; display: ${(props) => (props.visible ? 'block' : 'none')}; // 경고 발생`; 콘솔창에 경고가 뜬다... 이전 1 2 3 다음