Skip to content

Instantly share code, notes, and snippets.

@nhunzaker
Created January 13, 2015 21:21
Show Gist options
  • Save nhunzaker/8507635ddf26ba240094 to your computer and use it in GitHub Desktop.
Save nhunzaker/8507635ddf26ba240094 to your computer and use it in GitHub Desktop.
var states = {
'account': {
component: AccountFields,
next: 'survey'
},
'survey': {
component: SurveyFields
next: 'confirmation'
}
//..
}
this.setState({ step: this.state.step.next })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment