12tet.umm.gay/pages/_app.tsx

7 lines
187 B
TypeScript
Raw Normal View History

2023-03-06 02:11:34 +00:00
import "@/styles/globals.css";
import type { AppProps } from "next/app";
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}