Tldraw/packages/www/pages/_app.tsx

14 wiersze
232 B
TypeScript
Czysty Zwykły widok Historia

2021-09-04 11:26:46 +00:00
import '../styles/globals.css'
import { init } from '-utils/sentry'
import useGtag from '-utils/useGtag'
init()
2021-08-10 16:12:55 +00:00
2021-09-04 11:26:46 +00:00
function MyApp({ Component, pageProps }) {
useGtag()
2021-09-04 11:26:46 +00:00
return <Component {...pageProps} />
2021-08-10 16:12:55 +00:00
}
export default MyApp