Created
November 27, 2017 23:38
-
-
Save norbajunior/379db37122b8e84ddc93229457e744a6 to your computer and use it in GitHub Desktop.
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
class Notification extends Component { | |
render() { | |
<View style={{ transform: [{ translateY: -100 }] }> | |
<Image source={this.props.avatar} /> | |
<Text>Nova Mensagem</Text> | |
<Text>{this.props.message}</Text> | |
</View> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment