Last active
August 2, 2018 21:49
-
-
Save scwood/3f323f2ad343794fa9c09ac28d3edc89 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
// 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