Init project

This commit is contained in:
2023-04-29 14:51:14 -05:00
commit 71ccfc152b
16 changed files with 7949 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;