mirror of
https://github.com/FranP-code/Crypto-Prices.git
synced 2025-10-12 23:53:06 +00:00
33 lines
522 B
JavaScript
33 lines
522 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components'
|
|
|
|
const Header = () => {
|
|
|
|
const Header = styled.header`
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
padding: 3vh 0px;
|
|
|
|
border-bottom: solid 2px #ffffff24;
|
|
|
|
user-select: none;
|
|
|
|
h1 {
|
|
|
|
font-family: 'Raleway', sans-serif;
|
|
color: #fff;
|
|
}
|
|
`
|
|
|
|
return (
|
|
|
|
<Header>
|
|
<h1>Crypto Page</h1>
|
|
</Header>
|
|
)
|
|
};
|
|
|
|
export default Header;
|