I am in dire need of help. I need to make it possible for the user to store into his localStorage an array of 25 elements with each of them having nested elements themselves. The cell style and the element "render" includes JSX-Elements like this:
render: row => (
<div>
<Dialog text={row.Bemerkungen} />
</div>
),
I can store the array by stringifying it, but when retrieving it, I have issues deserialize the function-strings, see in the image below:
Would appriciate any help!