Tldraw/pages/_app.tsx

11 wiersze
235 B
TypeScript
Czysty Zwykły widok Historia

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-11 20:14:43 +00:00
return <Component {...pageProps} />
2021-05-09 12:03:39 +00:00
}
export default MyApp