blob: 828842064129784c5cb9748fe2b49342bd71e133 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import * as React from 'react';
import styled from 'styled-components';
import { Footer } from 'ts/@next/components/footer';
import { Header } from 'ts/@next/components/header';
import { Main } from 'ts/@next/components/layout';
import { GlobalStyles } from 'ts/@next/constants/globalStyle';
// Note(ez): We'll define the theme and provide it via a prop
// e.g. theme dark/light/etc.
interface Props {
}
const SiteWrap: React.StatelessComponent<Props> = props => {
const { children } = props;
return (
<>
{/* GlobalStyles will be exposed the theme via provider,
same is true for all children of SiteWrap
*/}
<GlobalStyles />
<Header />
<Main>
{ children }
</Main>
<Footer/>
</>
);
};
export { SiteWrap };
|