21e613891e
Includes changes due to NextJS version bump and attempts at storing theme via cookie
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import styled from 'styled-components'
|
|
|
|
const Page = styled.div`
|
|
width: 100%;
|
|
background-color: ${({ theme }) => theme.colors.background};
|
|
`
|
|
|
|
export { Page } |