mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
14 lines
300 B
TypeScript
14 lines
300 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>
|
|
)
|
|
}
|