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:28:18 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0c245085a2d515b7ef7df045ccd2d27784c91c1e
0c245085
1 parent
f5ca7cd2
remove unnecessary files
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
102 deletions
front/src/Components/FriendsList/ChatListBox.js
front/src/Components/FriendsList/FriendsList.js
front/src/Components/FriendsList/TextBox.js
front/src/Components/FriendsList/ChatListBox.js
deleted
100644 → 0
View file @
f5ca7cd
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
ImgIconBox
from
"../ImgIcon"
;
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
>
);
};
front/src/Components/FriendsList/FriendsList.js
deleted
100644 → 0
View file @
f5ca7cd
import
React
from
"react"
;
import
Styled
from
"styled-components"
;
import
{
FontAwesomeIcon
}
from
"@fortawesome/react-fontawesome"
;
import
{
faPlusCircle
}
from
"@fortawesome/free-solid-svg-icons"
;
import
SearchBox
from
"../SearchBox"
;
import
ChatListBox
from
"./ChatListBox"
;
const
FriendsList
=
Styled
.
div
`
width: 30%;
height: 100%;
display:flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px 10px;
box-shadow: 1px 1px 7px #8395a7;
`
;
const
PlusIconBox
=
Styled
.
div
`
width:100%;
display:flex;
justify-content:flex-end;
align-items:center;
font-size: 45px;
color: #98D79C;
`
;
export
default
()
=>
{
return
(
<
FriendsList
>
<
SearchBox
/>
<
ChatListBox
/>
<
ChatListBox
/>
<
ChatListBox
/>
<
PlusIconBox
>
<
FontAwesomeIcon
icon
=
{
faPlusCircle
}
/
>
<
/PlusIconBox
>
<
/FriendsList
>
);
};
front/src/Components/FriendsList/TextBox.js
deleted
100644 → 0
View file @
f5ca7cd
import
React
from
"react"
;
import
styled
from
"styled-components"
;
const
TextBox
=
styled
.
div
`
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
padding: 0px 15px;
`
;
const
NickNameBox
=
styled
.
div
`
display: flex;
margin-bottom: 5px;
`
;
const
NickName
=
styled
.
span
`
opacity: 0.8;
`
;
const
MsgPreviewBox
=
styled
.
div
`
display: flex;
`
;
const
MsgPreview
=
styled
.
span
`
opacity: 0.5;
`
;
export
default
()
=>
{
return
(
<
TextBox
>
<
NickNameBox
>
<
NickName
>
NickName
<
/NickName
>
<
/NickNameBox
>
<
MsgPreviewBox
>
<
MsgPreview
>
MsgPreview
...
<
/MsgPreview
>
<
/MsgPreviewBox
>
<
/TextBox
>
);
};
Please
register
or
login
to post a comment