Hello World
$ git clone https://github.com/rangle/react-native-workshop.git
$ cd react-native-workshop
$ npm install
$ git checkout 1-hello-worldBootstrapping
import { AppRegistry, View, Text } from 'react-native';
import React, { Component } from 'react';
class Root extends Component {
...
}
AppRegistry.registerComponent('ApplicationName', () => Root);Run the App

Last updated
Was this helpful?