美文网首页
RN HelloWorld & Lifecycle

RN HelloWorld & Lifecycle

作者: YxxxHao | 来源:发表于2016-08-29 21:12 被阅读45次

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

相关文章

网友评论

      本文标题:RN HelloWorld & Lifecycle

      本文链接:https://www.haomeiwen.com/subject/dycfettx.html