tldraw/packages/www/pages/_app.tsx

8 lines
137 B
TypeScript
Raw Normal View History

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