import { StyleSheet, Text, View } from 'react-native'; // Phase 0 stand-in for the conversation list. Confirms the authenticated // route group (`(app)`) mounts without error after a navigation from // Landing. Phase 1 replaces this with the real chat list. export default function Chats() { return ( Netralax Chats — coming soon (Phase 1) ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: '#0b0b0f', padding: 24, }, title: { color: '#fff', fontSize: 28, fontWeight: '600' }, subtitle: { color: '#9ca3af', marginTop: 8, textAlign: 'center' }, });