Skip to content

Instantly share code, notes, and snippets.

@EduardoJM
Created April 6, 2021 20:51
Show Gist options
  • Save EduardoJM/d2f4f3dccbfe668ee43d168fa3ffa414 to your computer and use it in GitHub Desktop.
Save EduardoJM/d2f4f3dccbfe668ee43d168fa3ffa414 to your computer and use it in GitHub Desktop.
rn_text_3
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