mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-30 10:43:06 +08:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
import { AppProps } from "next/app";
|
|
import React from "react";
|
|
import { Analytics } from "@vercel/analytics/react";
|
|
import "../styles/tailwind.css";
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|