React Native içinde bir string ifade kullanılacaksa bu Text
componenti içinde yazılmalıdır. Eğer doğru kullanılmazsa aşağıdaki hatayı alırsınız.
Yanlış Kullanım
import React from 'react';
import { Text, View } from 'react-native';
const App = () => {
return (
<>
<h1>Hello World</h1>//yanlış kullanımı
</>
)
}
export default App;
Doğru Kullanım
import React from 'react';
import { Text, View } from 'react-native';
const App = () => {
return (
<>
<Text>Hello World</Text>//doğru kullanım
</>
)
}
export default App;