Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이준성
/
khuwitch
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
ijunseong
2020-12-08 20:48:13 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
112e348bd89fa0f16ad605388fe5bbadad2a2242
112e348b
1 parent
a0ccab1f
Update: /list API 수신 테스트 코드
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
frontend/src/Channel.js
frontend/src/Channel.js
View file @
112e348
...
...
@@ -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"
>
...
...
Please
register
or
login
to post a comment