Created
November 14, 2018 20:50
-
-
Save GantMan/8c0d435edaa7607dc3b5632c5a2b362f to your computer and use it in GitHub Desktop.
No native - this is a simple non-native solution for welcome
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
import React from "react" | |
import { Text } from "react-native" | |
export default (props) => | |
<Text {...props}> | |
{props.text ? `WELCOME ${props.text.toUpperCase()}!` : 'WELCOME!'} | |
</Text> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment