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
body { | |
margin: 0; | |
background: #0A539C; | |
background: linear-gradient(top, #4293d6 0%,#001e96 100%); | |
overflow: hidden; | |
} | |
.words { | |
display: block; | |
padding: 50px; |
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
body { | |
background: #4b74e5; | |
} | |
a { | |
color: black; | |
text-decoration: none; | |
} |
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
onChangeText={text => this.updateContent(text)} | |
updateContent(newText) { | |
this.setState({ contentText: newText }); | |
firebase.database().ref('kettles/' + this.state.currentKettle + '/').set({ | |
content: newText | |
}); | |
} |
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
alert("test from gist"); |