Skip to content

Instantly share code, notes, and snippets.

@colinta
Last active April 13, 2020 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colinta/535c7de4a6261c6fcd9c9c61b9f39182 to your computer and use it in GitHub Desktop.
Save colinta/535c7de4a6261c6fcd9c9c61b9f39182 to your computer and use it in GitHub Desktop.
const render: FunctionComponent<Props> = (props) => {
return (
<View style={{
flex: 1,
flexDirection: "column",
justifyContent: "flex-start",
alignItems: "flex-start",
}}>
<View
style={{
flexDirection: "row",
justifyContent: "flex-start",
alignItems: "flex-start",
}}
>
<Text>
<Bold>OK!</Bold>
</Text>
<Text>
<Bold>OK!</Bold>
</Text>
<Text>
<Bold>OK!</Bold>
</Text>
</View>
</View>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment