savage-tracking/src/pages/_app.tsx

11 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);