UNPKG
spencer-kit-project-templates
Version:
latest (0.3.4)
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
spencer kit project templates
github.com/pallyoung/spencer-kit
pallyoung/spencer-kit
spencer-kit-project-templates
/
templates
/
react_native
/
index.js
13 lines
(11 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * Sample React Native App * https://github.com/facebook/react-native *
@flow
*/
import
React
, {
Component
}
from
'react'
;
import
{
AppRegistry
}
from
'react-native'
;
import
Entry
from
'./app/index'
;
AppRegistry
.
registerComponent
(
'helloworld'
,
() =>
Entry
);