Reactnative-notesapp/App.tsx
keannu125 4755f592c2 Initial commit
Generated by create-expo-app 1.3.2.
2023-03-05 21:30:06 +08:00

20 lines
455 B
TypeScript

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.tsx to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});