tldraw/pages/_app.tsx

14 lines
284 B
TypeScript
Raw Normal View History

2021-06-19 09:00:44 +00:00
import useGtag from 'hooks/useGtag'
import { AppProps } from 'next/app'
import { globalStyles } from 'styles'
import 'styles/globals.css'
2021-05-09 12:03:39 +00:00
function MyApp({ Component, pageProps }: AppProps) {
globalStyles()
2021-06-19 09:00:44 +00:00
useGtag()
2021-06-11 20:14:43 +00:00
return <Component {...pageProps} />
2021-05-09 12:03:39 +00:00
}
export default MyApp