First commit
This commit is contained in:
22
apk/app/index.tsx
Normal file
22
apk/app/index.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import { StyleSheet } from "react-native";
|
||||
|
||||
import { BirthdayList } from "@/components/birthdate-list";
|
||||
import ScrollView from "@/components/scroll-view";
|
||||
import { View } from "react-native";
|
||||
|
||||
export default function HomeScreen() {
|
||||
return (
|
||||
<ScrollView>
|
||||
<View style={styles.titleContainer}>
|
||||
<BirthdayList></BirthdayList>
|
||||
</View>
|
||||
</ScrollView>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
titleContainer: {
|
||||
gap: 8,
|
||||
margin: 20,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user