mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
11 lines
354 B
JavaScript
11 lines
354 B
JavaScript
import { AppRegistry } from 'react-native';
|
|
import bootstrap from './src/main';
|
|
import bgMessaging from './src/bgMessaging';
|
|
|
|
AppRegistry.registerComponent('ReactNativeFirebaseDemo', () => bootstrap);
|
|
// Task registered to handle background data-only FCM messages
|
|
AppRegistry.registerHeadlessTask(
|
|
'RNFirebaseBackgroundMessage',
|
|
() => bgMessaging
|
|
);
|