First commit

This commit is contained in:
2026-04-21 16:48:51 +02:00
parent 82bfb1666e
commit c751e28fce
45 changed files with 420 additions and 684 deletions

22
apk/app/index.tsx Normal file
View 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,
},
});