UNPKG

hcmobile-sdk

Version:

mobile-sdk

27 lines (21 loc) 503 B
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import {View,StatusBar} from 'react-native'; import Router from './Router'; export default class App extends Component { constructor(props) { super(props); } render() { return ( <View style = {{flex:1}}> <StatusBar backgroundColor = {'red'}/> <Router/> </View> ); } }