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
网友评论