Skip to content

Instantly share code, notes, and snippets.

@GantMan
Created November 14, 2018 20:50
Show Gist options
  • Save GantMan/8c0d435edaa7607dc3b5632c5a2b362f to your computer and use it in GitHub Desktop.
Save GantMan/8c0d435edaa7607dc3b5632c5a2b362f to your computer and use it in GitHub Desktop.
No native - this is a simple non-native solution for welcome
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