Last active
April 13, 2020 18:31
-
-
Save colinta/535c7de4a6261c6fcd9c9c61b9f39182 to your computer and use it in GitHub Desktop.
This file contains 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
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