-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
24 lines (19 loc) · 1.15 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @format
*/
import {AppRegistry} from 'react-native';
import Main from './Main';
import {name as appName} from './app.json';
/* -------------------------------------------------------------------------- */
/* UseState Section */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* UseEffect Section */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* API Section */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* On change Section */
/* -------------------------------------------------------------------------- */
AppRegistry.registerComponent(appName, () => Main);