diff options
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/App.tsx b/src/App.tsx index e1cd83cc..92d26ba7 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,10 +1,16 @@ -import React from 'react'; +import React, {useEffect} from 'react'; import {NavigationContainer} from '@react-navigation/native'; import Routes from './routes'; import {Provider} from 'react-redux'; import store from './store/configureStore'; +import {fcmService} from './services/FCMService'; const App = () => { + useEffect(() => { + fcmService.setUpPushNotifications(); + //If permissions are not there, deactivateFcmService + }); + return ( /** * This is the provider from the redux store, it acts as the root provider for our application |