How to use custom state in a reusable element to be available to another reusable element on the same page?

I am building single page application and my views are housed in groups .

There are many reusable elements.
If one of my reusable element has a custom state and contains data in it. Now when moving through the diffteent pages of the single page application, how do I make this data available in other pages ( which themselves are reusable elements.)

Thanks in advance.

I set up workflows on the parent page / element that looks for changes in the child element’s state and modifies the other element’s states, then set up workflows / conditionals within those elements to do whatever you need ‘em to do. Yes, it’s kind of a pain.

Thanks . Will implement it.