import React, { useEffect } from 'react';
import { Global } from '@emotion/core';
import styled from '@emotion/styled';
import { useColorMode } from 'theme-ui';
import NavigationFooter from '@components/Navigation/Navigation.Footer';
import NavigationHeader from '@components/Navigation/Navigation.Header';
import ArticlesContextProvider from '../../sections/articles/Articles.List.Context';
import { globalStyles } from '@styles';
/**
* needs to wrap every page as it provides styles, navigation,
* and the main structure of each page. Within Layout we have the
* which hides a lot of the mess we need to create our Desktop and Mobile experiences.
*/
const Layout: React.FC<{}> = ({ children }) => {
const [colorMode] = useColorMode();
useEffect(() => {
parent.postMessage({ theme: colorMode }, '*');
}, [colorMode]);
return (
{children}
);
}
export default Layout;
const Container = styled.div`
position: relative;
background: ${p => p.theme.colors.background};
transition: ${p => p.theme.colorModeTransition};
min-height: 100vh;
`;