I'm building an application with different tabs, each one rendering a different component. One of those components is a React Flow component, and each time that I open the tab of that component, the Flow component re-initialises, causing a 3-4 seconds screen freeze.
I would like to keep that component "in memory" even when not rendering it to avoid that freezing. I have tried using memo
but made no difference.
Thanks.