RN HelloWorld & Lifecycle

HelloWorld:

import React {
  Component,
} from 'react';

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

class helloworld extends Component {
    render() {
        return (
            hello world!
        );
    }
}

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

Lifecycle:

RN HelloWorld & Lifecycle_第1张图片
3-3-component-lifecycle.jpg

官网API

官网中文翻译API

你可能感兴趣的:(RN HelloWorld & Lifecycle)