feat: 로그인 화면 및 공통 속성 생성
This commit is contained in:
18
src/screens/HomeScreen.tsx
Normal file
18
src/screens/HomeScreen.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { StyleSheet, Text, View } from "react-native";
|
||||
|
||||
export default function HomeScreen() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text>feawfewa</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: "red",
|
||||
alignContent: "center",
|
||||
justifyContent: "center",
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user