From 492082e3b0467d15c0cee63a723b8f6172a5294f Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 16 Oct 2024 14:25:19 +0530 Subject: Created a new Expo app --- App.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 App.js (limited to 'App.js') diff --git a/App.js b/App.js new file mode 100644 index 0000000..09f879b --- /dev/null +++ b/App.js @@ -0,0 +1,20 @@ +import { StatusBar } from 'expo-status-bar'; +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.2.3-59-g8ed1b