We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 646206e commit 4b6f1c5Copy full SHA for 4b6f1c5
site/pages/_app.tsx
@@ -5,16 +5,6 @@ import ThemeProvider from "@material-ui/styles/ThemeProvider"
5
6
import { light } from "../theme"
7
import { AppProps } from "next/app"
8
-import { makeStyles } from "@material-ui/core"
9
-
10
-/**
11
- * SafeHydrate is a component that only allows its children to be rendered
12
- * client-side. This check is performed by querying the existence of the window
13
- * global.
14
- */
15
-const SafeHydrate: React.FC = ({ children }) => (
16
- <div suppressHydrationWarning>{typeof window === "undefined" ? null : children}</div>
17
-)
18
19
/**
20
* ClientRender is a component that only allows its children to be rendered
0 commit comments