Skip to content

Instantly share code, notes, and snippets.

@acomito
Created August 10, 2019 10:34
Show Gist options
  • Save acomito/b0cf03f036541a5076fc1224a7681742 to your computer and use it in GitHub Desktop.
Save acomito/b0cf03f036541a5076fc1224a7681742 to your computer and use it in GitHub Desktop.
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