import * as React from 'react'; import { GlobalStyles } from 'ts/@next/constants/globalStyle'; interface Props { } const SiteWrap:React.StatelessComponent = props => { const { children } = props; return ( <>
0x HEADER
{ children } ) }; export { SiteWrap }