TtRPC•Created by Satou kuzuma on 9/21/2022 in #❓-help Websocket connection failed.
const MyApp: AppType = ({ Component, pageProps }) => {
return <Component {...pageProps} />;
};
MyApp.getInitialProps = async ({ctx}) => {
return { pageProps: {} };
};
export default trpc.withTRPC(MyApp);