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-04-24 00:59:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a9fc789c6a6d2f4285bdf18f884c0b0fd390a1cf
a9fc789c
1 parent
5cd20d06
create Header.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
front/src/Components/Header.js
front/src/Components/Header.js
0 → 100644
View file @
a9fc789
import
React
from
"react"
;
import
Styled
from
"styled-components"
;
const
Header
=
Styled
.
div
`
width: 100%;
display: flex;
justify-content: center;
margin: 10px 0px;
font-size: 25px;
`
;
export
default
()
=>
{
return
(
<
Header
>
<
h1
>
KHU
Chatting
service
<
/h1
>
<
/Header
>
);
};
Please
register
or
login
to post a comment