-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
25 lines (21 loc) · 912 Bytes
/
App.jsx
File metadata and controls
25 lines (21 loc) · 912 Bytes
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
//---------------------------------------------------------------------
// Imports Section
//---------------------------------------------------------------------
import { NavigationHelpersContext } from "@react-navigation/core";
import * as React from "react"
import RootNavigation from "./src/navigation";
//---------------------------------------------------------------------
// App Component Section
//---------------------------------------------------------------------
const App = () => {
//-----------------------------------------------------------------
// Render Section
//-----------------------------------------------------------------
return (
<RootNavigation/>
)
}
//---------------------------------------------------------------------
// Exports Section
//---------------------------------------------------------------------
export default App