Files
pihkaal-me/src/pages/_app.tsx
2024-01-11 17:19:37 +01:00

12 lines
244 B
TypeScript

import { type AppType } from "next/app";
import { api } from "~/utils/api";
import "~/styles/globals.css";
const MyApp: AppType = ({ Component, pageProps }) => {
return <Component {...pageProps} />;
};
export default api.withTRPC(MyApp);