import React from 'react'; import { Normalize } from 'styled-normalize'; import GlobalStyle from './GlobalStyle'; const Layout = "div" const Global: React.FC = ({ children }) => { return ( <> {children} ); }; export default Global;