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:42 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d989f406a423bb14815575441e3b8e2b7710591d
d989f406
1 parent
ec264eda
create SubMenuBar.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
front/src/Components/SubMenuList/SubMenuBar.js
front/src/Components/SubMenuList/SubMenuBar.js
0 → 100644
View file @
d989f40
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
SubMenuBar
=
Styled
.
div
`
height: 100%;
display:flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px 10px;
`
;
const
PlusIconBox
=
Styled
.
div
`
width:100%;
display:flex;
justify-content:flex-end;
align-items:center;
font-size: 45px;
color: #98D79C;
`
;
export
default
()
=>
{
return
(
<
SubMenuBar
>
<
SearchBox
/>
<
ChatListBox
/>
<
ChatListBox
/>
<
ChatListBox
/>
<
PlusIconBox
>
<
FontAwesomeIcon
icon
=
{
faPlusCircle
}
/
>
<
/PlusIconBox
>
<
/SubMenuBar
>
);
};
Please
register
or
login
to post a comment