Click event not firing when React Component in a Shadow DOM
As it turns out the Shadow DOM retargets click events and encapsulates the events in the shadow. React does not like this because they do not support Shadow DOM natively, so the event delegation is off and events are not being fired. What I decided to do was to rebind the event to the actual … Read more