-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
32 lines (25 loc) · 787 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React, { useEffect } from 'react';
import AppLoading from 'expo-app-loading';
import { useFonts, Jost_400Regular, Jost_600SemiBold } from '@expo-google-fonts/jost';
import * as Notifications from 'expo-notifications';
import { SavedPlant } from './src/helpers/plant-storage';
import Routes from './src/routes';
export default function App() {
const [fontsLoaded] = useFonts({
Jost_400Regular,
Jost_600SemiBold,
});
useEffect(() => {
const subs = Notifications.addNotificationReceivedListener(
async ({ request }) => {
const data = request.content.data.plant as SavedPlant;
console.log('data', data);
}
)
return () => subs.remove();
}, []);
if (!fontsLoaded) {
return <AppLoading />;
}
return <Routes />;
}