Skip to content

Instantly share code, notes, and snippets.

@AllanGraves
Last active January 19, 2021 17:57
Show Gist options
  • Save AllanGraves/4df8ea48ba7f6b0dc6db67e29ce930ee to your computer and use it in GitHub Desktop.
Save AllanGraves/4df8ea48ba7f6b0dc6db67e29ce930ee to your computer and use it in GitHub Desktop.
Embedding Text
let textList = textToDisplayArray.map((item) => {
if (typeof item !== 'string') {
return item;
} else {
return <Text>{item}</Text>;
}
});
return <Text>{textList}</Text>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment