import styled from 'styled-components'; import { UIStyledComponentProps } from '../../components/types'; import { getCssResponsive } from '../../components/utils'; type Props = { }; export type PageProps = UIStyledComponentProps; export const Page = styled.div` margin: 0 auto; ${props => getCssResponsive(props)} `;