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

13 lines
303 B
TypeScript
Raw Normal View History

2022-03-12 03:27:56 +00:00
import type { AppProps } from 'next/app';
import { useSafari100vh } from 'hooks/use-safari-100vh';
2022-03-27 06:18:19 +00:00
import 'viewerjs/dist/viewer.css';
2022-03-12 03:27:56 +00:00
import 'styles/globals.scss';
2022-02-20 11:51:55 +00:00
function MyApp({ Component, pageProps }: AppProps) {
useSafari100vh();
return <Component {...pageProps} />;
}
export default MyApp;