Hi all,
the Hot-renderer feature is not working with latest react.js version 18, but is working fine with react version 17.
Please help !!!
Below is the pseudo code.
const NameRenderer = (props: any): any => {
const { value, row, cellProperties } = props
const id = cellProperties.instance.getDataAtRow(row)[0]
return <Link to={`/name/${id}`}>{value}</Link>
}
<HotColumn data={'name'} readOnly>
<NameRenderer hot-renderer />
</HotColumn>