구조분해1 [React] id 전달하기 // Examples.jsximport Section from "./Section.jsx";export default function Examples() { ... return ( ... );}위 코드에서 컴포넌트에 있는 id 속성은 스타일 적용 시 필요한 값이다.// Section.jsxexport default function Section({ title, children }) { return ( {title} {children} )} 하지만 에서 넘겨받는 id가 에 적용되진 않는다. 그럼 Section 컴포넌트에 인자로 id 속성을 추가하면 될까?// Section.jsxexport default.. 2024. 7. 21. 이전 1 다음 반응형