Tldraw/pages/_app.tsx

11 wiersze
235 B
TypeScript
Czysty Zwykły widok Historia

2021-05-09 12:03:39 +00:00
import { AppProps } from "next/app"
import { globalStyles } from "styles"
2021-05-09 13:04:42 +00:00
import "styles/globals.css"
2021-05-09 12:03:39 +00:00
function MyApp({ Component, pageProps }: AppProps) {
globalStyles()
return <Component {...pageProps} />
}
export default MyApp