Project init

This commit is contained in:
Xevion
2023-01-12 20:58:40 -06:00
commit 40441ed328
19 changed files with 10159 additions and 0 deletions

9
src/pages/_app.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { type AppType } from "next/dist/shared/lib/utils";
import "../styles/globals.css";
const MyApp: AppType = ({ Component, pageProps }) => {
return <Component {...pageProps} />;
};
export default MyApp;