followgraph/pages/_app.tsx

13 wiersze
278 B
TypeScript
Czysty Zwykły widok Historia

2022-12-20 07:55:24 +00:00
import '../styles/globals.css'
import { Analytics } from '@vercel/analytics/react'
2022-12-20 07:55:24 +00:00
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
<Analytics />
</>
)
2022-12-20 07:55:24 +00:00
}