You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
331 B
17 lines
331 B
4 years ago
|
import styled from 'styled-components';
|
||
|
|
||
|
import DEFAULT_THEME from '../../lib/consts/DEFAULT_THEME';
|
||
|
|
||
|
const PageContainer = styled.div`
|
||
|
min-height: 100vh;
|
||
|
width: 100vw;
|
||
|
|
||
|
background-color: ${(props) => props.theme.colors.secondary};
|
||
|
`;
|
||
|
|
||
|
PageContainer.defaultProps = {
|
||
|
theme: DEFAULT_THEME,
|
||
|
};
|
||
|
|
||
|
export default PageContainer;
|