Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created July 1, 2018 16:22
Show Gist options
  • Save ShMcK/9b835e1709c6270ddd35f50273260297 to your computer and use it in GitHub Desktop.
Save ShMcK/9b835e1709c6270ddd35f50273260297 to your computer and use it in GitHub Desktop.
VisualizingState: StateComponent
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