initial
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
// Chats list placeholder.
|
||||
// Milestone 1 TODO: render list of conversations, decrypt last-message preview,
|
||||
// navigate to a conversation screen on tap.
|
||||
|
||||
import { StyleSheet, Text, View } from 'react-native';
|
||||
|
||||
export default function Chats() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text style={styles.text}>Chats — placeholder</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: { flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: '#0b0b0f' },
|
||||
text: { color: '#fff' },
|
||||
});
|
||||
Reference in New Issue
Block a user