Upon converting my project to TypeScript, I encountered the following error message: The module '"./node_modules/react-native"' does not have an exported member 'View'.
import React from 'react';
import {StyleSheet, View, Text} from 'react-native';
export default function App() {
return (
<View style={{ flex: 1 }}>
<Text>Welcome</Text>
</View>
);
}