Showing
1 changed file
with
18 additions
and
0 deletions
front/src/Components/Header.js
0 → 100644
1 | +import React from "react"; | ||
2 | +import Styled from "styled-components"; | ||
3 | + | ||
4 | +const Header = Styled.div` | ||
5 | + width: 100%; | ||
6 | + display: flex; | ||
7 | + justify-content: center; | ||
8 | + margin: 10px 0px; | ||
9 | + font-size: 25px; | ||
10 | +`; | ||
11 | + | ||
12 | +export default () => { | ||
13 | + return ( | ||
14 | + <Header> | ||
15 | + <h1>KHU Chatting service</h1> | ||
16 | + </Header> | ||
17 | + ); | ||
18 | +}; |
-
Please register or login to post a comment