diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-05 17:35:05 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-05 17:35:05 -0500 |
commit | 231fed8c645dc29334b946dccca94fbb13116fe2 (patch) | |
tree | fc7bcd0f9e11b943d89877c621e95681e89a18d7 /src/App.tsx | |
parent | a5f746525df9bb2967c252b70e7a4e2f9daa2b8d (diff) | |
parent | bad7fac394f8ef2870a9a139fd46d0def4421bf1 (diff) |
Merge branch 'master' into TMA-579-Redesign-Snapchat-Tiktok
# Conflicts:
# src/components/common/TaggSquareButton.tsx
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/App.tsx b/src/App.tsx index 18fadf64..ea3617dc 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,17 +1,11 @@ -import React, {useEffect} from 'react'; import {NavigationContainer} from '@react-navigation/native'; -import Routes from './routes'; +import React from 'react'; import {Provider} from 'react-redux'; -import store from './store/configureStore'; -import {fcmService} from './services/FCMService'; import {navigationRef} from './RootNavigation'; +import Routes from './routes'; +import store from './store/configureStore'; const App = () => { - useEffect(() => { - fcmService.setUpPushNotifications(); - // TODO: If permissions are not there, deactivateFcmService - }); - return ( /** * This is the provider from the redux store, it acts as the root provider for our application |