From eb25480919c73af5c02771c6124494f415f7a063 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Sat, 1 Apr 2023 17:44:58 +0200 Subject: Working app --- App.js | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 53 insertions(+), 4 deletions(-) (limited to 'App.js') diff --git a/App.js b/App.js index 09f879b..920a0f5 100644 --- a/App.js +++ b/App.js @@ -1,12 +1,61 @@ import { StatusBar } from 'expo-status-bar'; -import { StyleSheet, Text, View } from 'react-native'; +import { StyleSheet } from 'react-native'; +import { NavigationContainer } from '@react-navigation/native'; +import { createNativeStackNavigator } from '@react-navigation/native-stack'; +const Stack = createNativeStackNavigator(); + +import Home from "./modules/Home"; +import Main from "./modules/Main"; +import Map from "./modules/Map"; export default function App() { return ( - - Open up App.js to start working on your app! + + + + + + {/* */} + {/* */} + - + ); } -- cgit v1.3.1