ijunseong

Update: /list API 수신 테스트 코드

......@@ -115,6 +115,13 @@ export class ChannelList extends React.Component {
}
}
componentDidMount() {
console.log('channel cdm');
fetch('http://localhost:3303/list').then( res => res.json())
.then(data => console.log(data))
// 수신 테스트
}
render() {
return (
<div className="channel__list">
......