From 5cf454c6800d6bfe26e08c6b4393b82bff442b4d Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Thu, 3 Mar 2022 22:57:17 +0100 Subject: Initial commit - v1.0.0 --- App.js | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 App.js (limited to 'App.js') diff --git a/App.js b/App.js new file mode 100644 index 0000000..5502da3 --- /dev/null +++ b/App.js @@ -0,0 +1,70 @@ +//import { StatusBar } from 'expo-status-bar'; +import * as React from 'react'; +import { NavigationContainer } from '@react-navigation/native'; +import { createNativeStackNavigator } from '@react-navigation/native-stack'; +const Stack = createNativeStackNavigator(); + +import Home from "./components/Home"; +import Gallery from "./components/Gallery"; +import PhotoBig from "./components/PhotoBig"; +import Camera from "./components/Camera"; +import Setting from "./components/Settings"; + +export default function App() { + return ( + + + + + + + + + + ); +} + +// const styles = StyleSheet.create({ +// container: { +// flex: 1, +// backgroundColor: '#fff', +// alignItems: 'center', +// justifyContent: 'center', +// }, +// }); -- cgit v1.3.1