Created
July 1, 2018 16:22
-
-
Save ShMcK/9b835e1709c6270ddd35f50273260297 to your computer and use it in GitHub Desktop.
VisualizingState: StateComponent
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
type States = 'loading' | 'loaded' | 'error' | |
type Data = any | |
class SomeComponent extends StateComponent<{}, States, Data> { | |
state = 'loading' | |
data = {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment