This repository has been archived on 2022-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
GiftGenie/screens/MainScreen.js

23 lines
477 B
JavaScript

import { StatusBar } from "expo-status-bar";
import { Text, View, StyleSheet } from "react-native";
function MainScreen() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}
export default MainScreen;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#282A35",
alignItems: "center",
justifyContent: "center",
},
});