mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-19 07:54:46 +00:00
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import type { AppProps } from 'next/app'
|
|
import { Analytics } from '@vercel/analytics/react'
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</>
|
|
)
|
|
}
|