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:48:38 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9b36192b2db59f2f869611a83fd995faaa055440
9b36192b
1 parent
6c547049
init People container
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
front/src/Components/People.js
front/src/Components/People.js
0 → 100644
View file @
9b36192
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
Header
from
"./Header"
;
import
SearchBox
from
"./SearchBox"
;
import
ProfileIcon
from
"./ProfileIcon"
;
const
PeopleContainer
=
styled
.
div
``
;
const
GridContainer
=
styled
.
div
``
;
const
ProfileIconContainer
=
styled
.
div
``
;
// this information get from database
const
Username
=
styled
.
span
``
;
// this information get from database
export
default
()
=>
{
return
(
<>
<
Header
text
=
{
"People"
}
><
/Header
>
<
PeopleContainer
>
<
SearchBox
/>
<
GridContainer
>
<
ProfileIconContainer
>
<
ProfileIcon
>
<
Username
>
User
1
<
/Username
>
<
/ProfileIcon
>
<
/ProfileIconContainer
>
<
/GridContainer
>
<
/PeopleContainer
>
<
/
>
);
};
Please
register
or
login
to post a comment