Skip to content

Instantly share code, notes, and snippets.

@shreyakupadhyay
Created May 9, 2020 20:56
Show Gist options
  • Save shreyakupadhyay/8847a9b91883b57ef0c06a1674e62e13 to your computer and use it in GitHub Desktop.
Save shreyakupadhyay/8847a9b91883b57ef0c06a1674e62e13 to your computer and use it in GitHub Desktop.
import firebase from 'react-native-firebase';
import type { NotificationOpen } from 'react-native-firebase';
export default async (notificationOpen: NotificationOpen) => {
if (notificationOpen.action === 'snooze') {
// handle notification.
}
return Promise.resolve();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment