1 2 3 4 5 6 7 8 9 10 11 12 13
import styled from "styled-components" import { FontSize } from "./style-helpers" let HeroScreen = styled.section` width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; font-size: ${FontSize.large}; ` export default HeroScreen