main-site/components/styles/generic.tsx

8 lines
161 B
TypeScript
Raw Normal View History

import styled from 'styled-components'
const Page = styled.div`
width: 100%;
background-color: ${({ theme }) => theme.colors.background};
`
export { Page }