1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import React from 'react'; import styled from 'styled-components' const SpacedTitle = styled.div` margin-top: 10vh ` const Header = () => { return ( <SpacedTitle> <h1> <span role="img" aria-label="clipboard">📋 </span> ctrl-v </h1> <h3>pastebin but less ass.</h3> </SpacedTitle> ); } export default Header;