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 }
|