I believe most errors are fixed. Rewrite is basically complete

This commit is contained in:
2024-10-21 12:32:53 -05:00
parent 2e36b01266
commit 3f477e8dfb
4 changed files with 14 additions and 11 deletions

View File

@ -11,7 +11,6 @@ import {
export default class AccessoryBar extends React.Component<any> {
render () {
const { onSend, isTyping } = this.props;
return (
<ThemedView style={styles.container}>
<Button onPress={() => pickImageAsync(onSend)} name='photo' />

View File

@ -3,12 +3,12 @@ import * as Linking from 'expo-linking';
import {
Platform,
StyleSheet,
TouchableOpacity,
StyleProp,
ViewStyle
} from 'react-native';
import { ThemedText, ThemedView } from '@/components/theme/Theme';
import MapView from 'react-native-maps';
import { TouchableOpacity } from 'react-native-gesture-handler';
type Props = {
currentMessage: any;