//App.js //Olivia Alberts //Last updated: May 12th, 2020 //This file is the navigator of the app. import React from 'react'; import { FlatList, ActivityIndicator, Text, View, Button, Alert, StyleSheet, TextInput, TouchableOpacity, Image, KeyboardAvoidingView } from 'react-native'; import { render } from 'react-dom'; import 'react-native-gesture-handler'; import Home from './screens/home.js'; import Tracking from './screens/tracking.js'; import Navigator from './routes/homeStack.js'; console.disableYellowBox = true; //disables warning messages from appearing at the bottom of screen export default class UserApp extends React.Component{ render() { return( ); } };