Tldraw/pages/_app.tsx

10 wiersze
207 B
TypeScript
Czysty Zwykły widok Historia

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