Hello. After reading the docs I know that you can create a react component to render if you embed it in a <HotColumn/>
but for reasons, I must use a plain column config object. It doesn’t seem to complain if I set a column’s renderer
to a function that returns JSX, but, it doesn’t work. It seems to default to an empty autocomplete cell.
So the question is - is this supported?
columns={ [
{
renderer: () => <MyReactElement />
}
] }