I'd like to be able to render links as a Dimension value where appropriate.
The Dimension display value is defined as
displayValue: (item: any) => string
I can't use a jsx fragment here of if I attempt to return an '< a href....' it is html encoded and rendered as html.
Ideally I'd like to add a <Link component but would settle for an <a tag
Is this achievable?