-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
23 lines (18 loc) · 695 Bytes
/
Copy pathApp.tsx
File metadata and controls
23 lines (18 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ------------------------------ Basic imports ----------------------------- */
import React, {FC} from 'react';
import {SafeAreaProvider} from 'react-native-safe-area-context';
/* ---------------------------------- Pages --------------------------------- */
import Home from './src/pages/home';
/* ---------------------------------- Utils --------------------------------- */
import {PlayerProvider} from './src/utils/audioPayer';
const App: FC = () => {
/* --------------------------------- Render --------------------------------- */
return (
<SafeAreaProvider>
<PlayerProvider>
<Home />
</PlayerProvider>
</SafeAreaProvider>
);
};
export default App;