26 lines
791 B
TypeScript
26 lines
791 B
TypeScript
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 (
|
|
<View style={styles.container}>
|
|
<Text style={styles.title}>Netralax</Text>
|
|
<Text style={styles.subtitle}>Chats — coming soon (Phase 1)</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
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' },
|
|
});
|