I have a React project and I made an upgrade from MUIv5 to MUIv6. After the upgrade, there's a type error I don't know how to get rid of: 'CopyToClipboard' cannot be used as a JSX component.
import { CopyToClipboard } from 'react-copy-to-clipboard';
<CopyToClipboard text={text} onCopy={handleCopyToClipboard}>
<IconButton></IconButton>
</CopyToClipboard>
I also use Lint and I cannot set "any" as a type (React.JSXElementConstructor). What type should it be?