@kode-frontend/react-native-push-notification
Version:
Push notification service for React Native apps
16 lines (13 loc) • 307 B
text/typescript
import { pushService } from '../../push-notification-service'
import { updateFcmToken } from '../push-settings'
const unregister = async () => {
try {
await pushService.removeToken()
updateFcmToken(null)
} catch {}
}
export const useUnregisterDevice = () => {
return {
unregister,
}
}