React Native的HelloWorld实例

1.App.js代码如下

    import React, {

      Component

    } from 'react';

    import {

      Text,

      View,

      AppRegistry

    } from 'react-native';

    

    export default class HelloWorldApp extends Component {

      render() {

        return (

          <View>

            <Text>Hello world! this is my HelloWorldApp</Text>

          </View>

        );

      }

    }

    

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

2.App.js代码截图如下:

1.png

3.运行结果截图:

2.jpg

QQ截图20181128093727.png

猜你喜欢

转载自blog.51cto.com/suyanzhu/2322948