From 67b6f338cfe4da739d39dc6764d11efa00105d81 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Thu, 9 Dec 2021 23:15:33 +0100 Subject: Created a new Expo app --- App.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 App.js (limited to 'App.js') diff --git a/App.js b/App.js new file mode 100644 index 0000000..181f3ce --- /dev/null +++ b/App.js @@ -0,0 +1,21 @@ +import { StatusBar } from 'expo-status-bar'; +import React from 'react'; +import { StyleSheet, Text, View } from 'react-native'; + +export default function App() { + return ( + + Open up App.js to start working on your app! + + + ); +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + alignItems: 'center', + justifyContent: 'center', + }, +}); -- cgit v1.3.1