mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-11-04 12:00:10 +00:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
|
import type { AppProps } from 'next/app';
|
||
|
import { Analytics } from '@vercel/analytics/react';
|
||
|
|
||
|
function MyApp({ Component, pageProps }: AppProps) {
|
||
|
return (
|
||
|
<>
|
||
|
<Component {...pageProps} />
|
||
|
<Analytics />
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default MyApp;
|