private void ScheduleDispatcherSafe(object sender, object e)
 {
     try
     {
         ScheduleDispatch(sender, e);
     }
     catch (Exception ex)
     {
         _reactContext.HandleException(ex);
     }
 }
 private void OnRenderingSafe(object sender, FrameEventArgs e)
 {
     try
     {
         OnRendering(sender, e);
     }
     catch (Exception ex)
     {
         _reactContext.HandleException(ex);
     }
 }