Files
lightning-address/pages/index.js
2021-08-04 08:23:44 -04:00

11 lines
203 B
JavaScript

import styled from 'styled-components'
const Title = styled.h1`
font-size: 50px;
color: ${({ theme }) => theme.colors.primary};
`
export default function Home() {
return <Title>My page</Title>
}