index.ios.js 389 Bytes
Newer Older
Greg Wilson's avatar
Greg Wilson committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View
} from 'react-native';

15 16
import App from './app/app';

Greg Wilson's avatar
Greg Wilson committed
17 18 19
class StepsDemo extends Component {
  render() {
    return (
20
      <App />
Greg Wilson's avatar
Greg Wilson committed
21 22 23 24 25
    );
  }
}

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