import { type AppType } from "next/app"; import { Noto_Sans } from "next/font/google" import { api } from "~/utils/api"; import "~/styles/globals.css"; const noto = Noto_Sans({ subsets: ["latin"] }) const MyApp: AppType = ({ Component, pageProps }) => { return
; }; export default api.withTRPC(MyApp);