aboutsummaryrefslogtreecommitdiffstats
path: root/App.js
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <[email protected]> 2024-10-16 14:25:19 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <[email protected]> 2024-10-16 14:25:19 +0530
commit492082e3b0467d15c0cee63a723b8f6172a5294f (patch)
treecb9741c7d7ada3b02c46fef95f467709a6afc873 /App.js
downloadyt-local-492082e3b0467d15c0cee63a723b8f6172a5294f.tar.gz
yt-local-492082e3b0467d15c0cee63a723b8f6172a5294f.tar.bz2
yt-local-492082e3b0467d15c0cee63a723b8f6172a5294f.zip
Created a new Expo app
Diffstat (limited to 'App.js')
-rw-r--r--App.js20
1 files changed, 20 insertions, 0 deletions
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 (
+ <View style={styles.container}>
+ <Text>Open up App.js to start working on your app!</Text>
+ <StatusBar style="auto" />
+ </View>
+ );
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ backgroundColor: '#fff',
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+});