After i convert my project in typescript showing me following error Module '"./node_modules/react-native"' has no 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> ); }
Delete node_modules folder and run npm install or yarn again.
node_modules
npm install
yarn
If it not solve this problem, try to run npm install @types/react @types/react-native or yarn add @types/react @types/react-native
npm install @types/react @types/react-native
yarn add @types/react @types/react-native
2.1m questions
2.1m answers
60 comments
57.0k users