You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error : JSX element type 'ReactPaginate' does not have any construct or call signatures.ts(2604).
I have reinstalled packeges, path to react-paginate is correct, even chatGPT could not help
import ReactPaginate, {ReactPaginateProps } from "react-paginate" ;
.......
interface Props {
[key : string]: any
}
export const Pagination : React.FC<Props & ReactPaginateProps> = () => {
.....
return (
<ReactPaginate //error is here
.......
/>
);
};
The text was updated successfully, but these errors were encountered:
This error : JSX element type 'ReactPaginate' does not have any construct or call signatures.ts(2604).
I have reinstalled packeges, path to react-paginate is correct, even chatGPT could not help
The text was updated successfully, but these errors were encountered: