Skip to content

Instantly share code, notes, and snippets.

@arvinio
Last active April 9, 2017 13:52
Show Gist options
  • Save arvinio/9c65807087490b4d36fb5f46bcad8d17 to your computer and use it in GitHub Desktop.
Save arvinio/9c65807087490b4d36fb5f46bcad8d17 to your computer and use it in GitHub Desktop.
Hot Reloading does not update state
export default class NameForm extends Component {
constructor(){
super()
this.state = {initalName: "Arvin"}
}
render() {
return (
<View>
<TextInput
placeholder="Your Name"
value={this.state.initialName} //Exception will be thrown if initialName is null
/>
</View>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment