const comments는 id, name, comment, path 를 가진 리스트임function Comment(props) { return ( {props.name} {props.comment} )}props을 통해서 부모컴포넌트로부터 name, comment, path를 전달받아서 랜더링함.const CommentList = () => { return ( { comments.map(c => { return }) } )}export default CommentList..