mirror of
https://github.com/aaronleetw/savage-tracking.git
synced 2024-11-15 03:21:38 -08:00
12 lines
244 B
TypeScript
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);
|