'use strict';
import React, {Component} from 'react';
import ReactNative from 'react-native';
const {
  AppRegistry,
  StyleSheet,
  Text,
  View,
  Navigator,
  Alert,
  TouchableHighlight
} = ReactNative;
//This is the app container that contains the navigator stuff
class AppC...