savage-tracking/src/pages/_app.tsx

16 lines
378 B
TypeScript
Raw Normal View History

2023-12-21 08:24:14 -08:00
import { type AppType } from "next/app";
2023-12-21 08:24:25 -08:00
import { Noto_Sans } from "next/font/google"
2023-12-21 08:24:14 -08:00
import { api } from "~/utils/api";
import "~/styles/globals.css";
2023-12-21 08:24:25 -08:00
const noto = Noto_Sans({ subsets: ["latin"] })
2023-12-21 08:24:14 -08:00
const MyApp: AppType = ({ Component, pageProps }) => {
2023-12-21 08:24:25 -08:00
return <main className={noto.className}><Component {...pageProps} /></main>;
2023-12-21 08:24:14 -08:00
};
export default api.withTRPC(MyApp);