Created
August 10, 2019 10:34
-
-
Save acomito/b0cf03f036541a5076fc1224a7681742 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import styled from 'styled-components'; | |
import Header from './Header'; | |
// STYLE-COMPONENTS | |
// =================================== | |
const AuthenticatedLayout = styled.div` | |
min-height: 100vh; | |
height: 100%; | |
max-width: 100%; | |
background-color: ${p => p.theme.colors.neutral10} !important; | |
`; | |
// EXPORT | |
// =================================== | |
export default ({ children }) => ( | |
<AuthenticatedLayout id="authenticated-layout"> | |
<div> | |
<Header /> | |
<div style={{ height: '100%' }}>{children}</div> | |
</div> | |
</AuthenticatedLayout> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment