mirror of
https://github.com/aljazceru/lightning-address.git
synced 2025-12-17 05:14:22 +01:00
11 lines
203 B
JavaScript
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>
|
|
}
|