diff options
Diffstat (limited to 'frontend/src/pages/_app.js')
| -rw-r--r-- | frontend/src/pages/_app.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/frontend/src/pages/_app.js b/frontend/src/pages/_app.js index eb205e3..e013c64 100644 --- a/frontend/src/pages/_app.js +++ b/frontend/src/pages/_app.js @@ -1,7 +1,6 @@ import React from 'react' import ThemeProvider from "../theme/ThemeProvider"; import GlobalStyle from "../theme/GlobalStyle"; -import {Watermark} from "../components/Watermark"; import styled from "styled-components"; const Main = styled.div` @@ -12,7 +11,6 @@ const Main = styled.div` const App = ({ Component, pageProps }) => ( <ThemeProvider> <GlobalStyle /> - <Watermark/> <Main id="appElement"> <Component {...pageProps} /> </Main> |