Created
April 6, 2021 20:51
-
-
Save EduardoJM/d2f4f3dccbfe668ee43d168fa3ffa414 to your computer and use it in GitHub Desktop.
rn_text_3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function App() { | |
const [localData, setLocalData] = useState<Data>({ | |
text: 'This is a basic example with text' | |
}); | |
return ( | |
<View style={styles.container}> | |
<Text>Open up App.tsx to start working on your app!</Text> | |
{localData.text && ( | |
<Text>{localData.text}</Text> | |
)} | |
<StatusBar style="auto" /> | |
</View> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment