import * as React from 'react'; import styled from 'styled-components'; import { GlobalStyles } from 'ts/@next/constants/globalStyle'; import { Header } from 'ts/@next/components/header'; interface Props { } const SiteWrap: React.StatelessComponent = props => { const { children } = props; return ( <>
{ children }
); }; const Main = styled.main` border: 1px solid blue; width: calc(100% - 60px); max-width: 1500px; margin: 0 auto; `; export { SiteWrap }