정식 React 참고 문서에는 구성(composition) vs 상속(inheritance)에 Children을 쓰는 이유를 나와있다. (https://reactjs-kr.firebaseapp.com/docs/composition-vs-inheritance.html) 간단히 말하면 children는 재사용을 위해서 사용된다. 자식 컴포넌트 const Picture = (props) => { return ( {props.children} ) }부모 컴포넌트 render () { return (