UNPKG
reactors-cli
Version:
latest (4.0.4)
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.0.1
3.0.0
2.0.0
1.3.7
1.3.6
1.3.4
1.3.2
1.3.1
1.3.0
1.2.5
1.2.2
1.2.0
1.1.2
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
Command line utility for reactors
github.com/co2-git/reactors-git
co2-git/reactors-git
reactors-cli
/
templates
/
migrations
/
v0.1.11
/
index.mobile.js
13 lines
(10 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** *
@module
{
app
} *
@name
Index for mobile platforms (iOS & Android) *
@type
RN Index *
@description
React Native index *
@flow
**/
import
{
AppRegistry
}
from
'react-native'
;
import
App
from
'./app/App'
;
AppRegistry
.
registerComponent
(
'{app}'
,
() =>
App
);