DocSpace-buildtools/web/ASC.Web.Editor/pages/_app.js

21 lines
303 B
JavaScript
Raw Normal View History

2022-01-28 10:51:23 +00:00
import { createGlobalStyle } from "styled-components";
const GlobalStyle = createGlobalStyle`
body {
margin: 0;
}
html, body {
height: 100%;
}
`;
export default function App({ Component, pageProps }) {
2022-01-28 10:51:23 +00:00
return (
<>
<GlobalStyle />
<Component {...pageProps} />
</>
);
}