'Component' cannot be used as a JSX component.
Can somebody tell me why I am getting this error?:

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);