mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 22:47:15 +01:00
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import { Analytics } from '@vercel/analytics/react'
|
|
|
|
import '../styles/index.css'
|
|
import '../styles/gfm.css'
|
|
|
|
export default function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<div className="flex flex-col min-h-screen">
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</div>
|
|
)
|
|
} |