Closed yancaidev closed 1 year ago
The snippet below is the code of the AssetsScreen.tsx file.
AssetsScreen.tsx
import { Text, View } from 'react-native'; import React, { Component } from 'react'; export default class AssetsScreen extends Component { render() { return ( <View> <Text>AssetsScreen</Text> </View> ); } }
Expecting typescript does not display the error message "Operator '<' cannot be applied to the types 'View' and 'RegExp'".
But it's strange that some other components don't have the same problem.
npx react-native init rn_wallet --template react-native-template-typescript.
yarn start
yarn android
Expected results
The snippet below is the code of the
AssetsScreen.tsx
file.Expecting typescript does not display the error message "Operator '<' cannot be applied to the types 'View' and 'RegExp'".
But it's strange that some other components don't have the same problem.
Observed results
Steps to reproduce
npx react-native init rn_wallet --template react-native-template-typescript.
yarn start
yarn android
Environment