Hi everyone I’m building a react application and I’m not quite sure how to organize/distribute CF within the application. I made it work in a simple way: I have all the aql declaration within a function. The function calls the .execute
for each one of the visuals when the components are mounted.
The first clue that I’m not doing correctly is that I have some events attached to the visuals, and they are still fired if I go to a different route for example (using react-router), meaning that they are still there although the respective components aren’t.
I would like to know if you have a different approach for this.