RN HelloWorld & Lifecycle

2016-08-29  本文已影响45人  YxxxHao

HelloWorld:

import React {
  Component,
} from 'react';

import {
  AppRegistry,
  Text,
} from 'react-native';

class helloworld extends Component {
    render() {
        return (
            <Text>hello world!</Text>
        );
    }
}

AppRegistry.registerComponent('helloworld', ()=> helloworld);

Lifecycle:

3-3-component-lifecycle.jpg

官网API

官网中文翻译API

上一篇下一篇

猜你喜欢

热点阅读