Skip to content

Instantly share code, notes, and snippets.

@scwood
Last active August 2, 2018 21:49
Show Gist options
  • Save scwood/3f323f2ad343794fa9c09ac28d3edc89 to your computer and use it in GitHub Desktop.
Save scwood/3f323f2ad343794fa9c09ac28d3edc89 to your computer and use it in GitHub Desktop.
// Anything wrong with doing this?
class ExampleComponent extends Component {
defaultState = {
isLoading: false,
fileUploaded: false,
currentFile: null,
pendingImports: null,
}
state = defaultState
someOtherMethod = () => {
this.setState(defaultState)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment