这是一个帮助页面
import React, { Component } from 'react';
import { Text, View } from 'react-native';
class WhyReactNativeIsSoGreat extends Component {
render() {
return (
<View>
<Text>
If you like React on the web, you'll like React Native.
</Text>
<Text>
You just use native components like 'View' and 'Text',
instead of web components like 'div' and 'span'.
</Text>
</View>
);
}
}
Browse Docs
Browse Docs
Learn more using the documentation on this site.
Join the community
Join the community
Ask questions about the documentation and project
Stay up to date
Stay up to date
Find out what's new with this project