import React, { useState } from 'react'; 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(null); const handlePfpUpdate = (newPfpUrl: string) => { setPfpUrl(newPfpUrl); }; return ( ); }; export default IndexScreen; const styles = StyleSheet.create({ container: { flex: 1, }, });