diff --git a/HackRPIEventApp2023/App.js b/HackRPIEventApp2023/App.js index a6e9844..2112dab 100644 --- a/HackRPIEventApp2023/App.js +++ b/HackRPIEventApp2023/App.js @@ -1,5 +1,5 @@ import React from "react"; -import { StyleSheet, View, Text } from "react-native"; +import { StyleSheet, View, Text, Button } from "react-native"; import { NavigationContainer } from "@react-navigation/native"; import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"; import { Feather } from "@expo/vector-icons"; @@ -7,33 +7,56 @@ import { StatusBar } from "expo-status-bar"; import Calander from "./Box/Calander"; import Food from "./information/Food"; import HackerQue from "./HackerQue/QueEntry.js"; -// import { colors } from './colors'; import { globalStyles } from "./styles"; +import Login from "./Login/Login"; const Tab = createBottomTabNavigator(); function InfoScreen() { + const goToLogin = () => { + navigation.navigate("Login"); + }; + return ( +