MovieDetail 페이지에 댓글을 달 수 있는 기능을 만들 것이다. 먼저 Comment.js를 위한 템플릿을 만든다. function Comment() { return ( Replies {/* Comment Lists */} {/* Root Comment Form */} Submit ); } export default Comment; 다음은 handlechange 기능이다. const [commentValue, setcommentValue] = useState(''); const user = useSelector((state) => state.user); const handleChange = (event) => { setcommentValue(event.currentTarget.value); }; c..