Prompt-Engineering-Guide/pages/_app.tsx

13 lines
261 B
TypeScript
Raw Normal View History

2023-03-17 15:48:51 +08:00
import type { AppProps } from 'next/app';
import { Analytics } from '@vercel/analytics/react';
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
<Analytics />
</>
);
}
export default MyApp;