You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
445 B
23 lines
445 B
2 months ago
|
import React from 'react';
|
||
|
import { View, Text, StyleSheet } from 'react-native';
|
||
|
|
||
|
export const ChatScreen = () => {
|
||
|
return (
|
||
|
<View style={styles.container}>
|
||
|
<Text style={styles.text}>Chat Screen</Text>
|
||
|
</View>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
container: {
|
||
|
flex: 1,
|
||
|
justifyContent: 'center',
|
||
|
alignItems: 'center',
|
||
|
backgroundColor: '#fff',
|
||
|
},
|
||
|
text: {
|
||
|
fontSize: 20,
|
||
|
color: '#333',
|
||
|
},
|
||
|
});
|