Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-05-18 11:27:05 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f5ca7cd2a0e248e805e10072aaddf16d0746064a
f5ca7cd2
1 parent
ede8af68
init ChannelList component
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
front/src/Components/ChannelList.js
front/src/Components/ChannelList.js
0 → 100644
View file @
f5ca7cd
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
{
Link
}
from
"react-router-dom"
;
const
ChannelContainer
=
styled
.
div
``
;
const
ChannelList
=
styled
.
ul
``
;
const
ChannelItem
=
styled
.
li
``
;
const
CreateContainer
=
styled
.
div
``
;
export
default
()
=>
{
return
(
<>
<
ChannelContainer
>
<
ChannelList
>
<
ChannelItem
>
First
Channel
<
/ChannelItem
>
<
/ChannelList
>
<
/ChannelContainer
>
<
CreateContainer
>
<
Link
to
=
"/"
>
Create
New
Channel
<
/Link
>
<
/CreateContainer
>
<
/
>
);
};
Please
register
or
login
to post a comment