DocSpace-client/web/ASC.Web.Editor/pages/_app.js
2022-01-28 13:51:23 +03:00

21 lines
303 B
JavaScript

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