({action, year, month, day}) => {
   if (action === DatePickerAndroid.dateSetAction) {
     RecordingModule.recordDate(year, month, day);
   } else if (action === DatePickerAndroid.dismissedAction) {
     RecordingModule.recordDismissed();
   }
 },
 ({code, message}) => RecordingModule.recordError()