렌더링 시 onClick이 호출되는 이유는 무엇입니까? - React.js 작성한 컴포넌트가 있습니다. class Create extends Component { constructor(props) { super(props); } render() { var playlistDOM = this.renderPlaylists(this.props.playlists); return ( {playlistDOM} ) } activatePlaylist(playlistId) { debugger; } renderPlaylists(playlists) { return playlists.map(playlist => { return {playlist.playlist_name} }); } } function mapStateToProp..