React Native, jsx içinde return
içinde sadece bir component yazmanıza izin verir. Eğer bir tane View
kullandıysanız, diğer componentleri onun içine eklemelisiniz.
Yanlış Kullanım
import React from 'react';
import { Text, View } from 'react-native';
const App = () => {
return (
<View>
<Text>Hello, world!</Text>
</View>
<View>
<Text>Hello, world!</Text>
</View>
)
}
export default App;
Doğru Kullanım
import React from 'react';
import { Text, View } from 'react-native';
const App = () => {
return (
<View>
<Text>Hello, world!</Text>
</View>
)
}
export default App;