receipt_indexer/code/app/demoTutorialProject/App.js
Ethan Wellenreiter 496386d7ff Initial setup for expo demo/tutorial project
Following https://www.youtube.com/watch?v=0-S5a0eXPoc (kind of).
Setting it up was different. I had to use "npx create-expo-app --template"
to make the project initially. Maybe follow this too for help:
https://docs.expo.dev/get-started/create-a-project/.

Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2023-09-14 21:06:03 -04:00

21 lines
454 B
JavaScript

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',
},
});