I couldn't figure it out, I tried a lot of things
CodePudding user response:
You are using <view>
and <text>
instead of <View>
and <Text>
try this,
import { Text, View } from 'react-native'
import React, {useState} from 'react'
const App = () => {
const [show, setShow] = useState(false);
return (
<View>
<Text>Hello</Text>
</View>
)
}
export default App;
CodePudding user response:
my code