If I try to catch the event on user click (to handle modifer keys such as CTRL, CMD, ALT) I receive this warning and the event properties are null.
Warning: This synthetic event is reused for performance reasons. If you're seeing this, you're accessing the property nativeEvent on a released/nullified synthetic event. This is set to null. If you must keep the original synthetic event around, use event.persist(). See https://fb.me/react-event-pooling for more information.
If I try to catch the
eventon user click (to handle modifer keys such as CTRL, CMD, ALT) I receive this warning and the event properties are null.