Add countdown.

This commit is contained in:
2024-10-29 11:23:29 -05:00
parent e84597883b
commit 4fb9e60c6c
13 changed files with 511 additions and 171 deletions

View File

@ -3,6 +3,7 @@ import { StyleSheet } from 'react-native';
import { ThemedView } from '@/components/theme/Theme';
import UserInfo from '@/components/home/UserInfo';
import RelationshipView from '@/components/home/RelationshipView';
import CountdownView from '@/components/home/Countdown';
const IndexScreen = () => {
const [pfpUrl, setPfpUrl] = useState<string | null>(null);
@ -12,6 +13,7 @@ const IndexScreen = () => {
return (
<ThemedView style={styles.container}>
<UserInfo onPfpUpdate={handlePfpUpdate} />
<CountdownView />
<RelationshipView pfpUrl={pfpUrl} />
<ThemedView style={styles.footerContainer}>
</ThemedView>