think/packages/client/src/pages/_app.tsx

12 lines
268 B
TypeScript
Raw Normal View History

2022-02-20 11:51:55 +00:00
import type { AppProps } from "next/app";
import { useSafari100vh } from "hooks/use-safari-100vh";
import "styles/globals.scss";
function MyApp({ Component, pageProps }: AppProps) {
useSafari100vh();
return <Component {...pageProps} />;
}
export default MyApp;