savage-tracking/src/pages/_app.tsx

12 lines
244 B
TypeScript
Raw Normal View History

2023-12-21 08:24:14 -08:00
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);