riffusion-app/pages/_app.tsx

15 lines
292 B
TypeScript
Raw Normal View History

2022-11-20 14:39:15 -07:00
import "../styles/globals.css";
import type { AppProps } from "next/app";
2022-12-12 12:26:43 -07:00
import { Analytics } from "@vercel/analytics/react";
2022-11-20 14:39:15 -07:00
function MyApp({ Component, pageProps }: AppProps) {
2022-12-12 12:26:43 -07:00
return (
<>
<Component {...pageProps} />
<Analytics />
</>
);
}
export default MyApp;