Imagine I have 2 main components, A and B. Now, component C needs to be created inside both A and B. How can I guarantee that the same exact instance of C is generated in both places? Essentially, I want them to stay synchronized - any changes made to one should automatically reflect in the other.
I attempted using the same key value for both components, but unfortunately, it didn't solve my issue.