Gitea-Test-Public/pages/_app.tsx

7 lines
181 B
TypeScript
Raw Permalink Normal View History

2024-10-06 07:27:52 +00:00
import "@/styles/globals.css";
import type { AppProps } from "next/app";
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}