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-06 00:20:17 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fa06a1c96f22f4c82d8afbf073dad79504909d09
fa06a1c9
1 parent
a4faabf4
create ChatListBox.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
front/src/Components/SubMenuList/ChatListBox.js
front/src/Components/SubMenuList/ChatListBox.js
0 → 100644
View file @
fa06a1c
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
ImgIconBox
from
"./ImgIconBox"
;
import
TextBox
from
"./TextBox"
;
const
ChatListBox
=
styled
.
div
`
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin: 20px 10px;
`
;
export
default
()
=>
{
return
(
<
ChatListBox
>
<
ImgIconBox
/>
<
TextBox
/>
<
/ChatListBox
>
);
};
Please
register
or
login
to post a comment