aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/siteWrap.tsx
blob: 1b0efd145ebaede1b96241b1cdf924a5c75d3db0 (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
import * as React from 'react';
import { GlobalStyles } from 'ts/@next/constants/globalStyle';


interface Props {

}

const SiteWrap:React.StatelessComponent<Props> = props => {
  const { children } = props;

  return (
    <>
      <GlobalStyles />

      <header>0x HEADER</header>

      { children }

      <footer>OMG FOOTER</footer>
    </>
  )
};


export { SiteWrap }