import { View, Text, StyleSheet } from 'react-native'; interface EmptyStateProps { title?: string; message?: string; } export function EmptyState({ title = 'No Data', message = 'There is nothing to show here yet.' }: EmptyStateProps) { return ( {title} {message} ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', padding: 24, }, title: { fontSize: 18, fontWeight: 'bold', color: '#333333', marginBottom: 8, }, message: { fontSize: 16, color: '#666666', textAlign: 'center', }, });