'Component' cannot be used as a JSX component.

import { AppProps } from 'next/app';
import { api } from '~/utils/api';
import '~/styles/globals.css';

const MyApp = ({ Component, pageProps }: AppProps) => {
  return <Component {...pageProps} />;
};

export default api.withTRPC(MyApp);


Can somebody tell me why I am getting this error?:
image.png
Was this page helpful?