Advertisement
Guest User

Untitled

a guest
May 25th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. export default (
  2. <Route path='/' component={App}>
  3. <IndexRoute component={Signup} />
  4. <Route path='signup_verify' component={SignupVerify} />
  5. </Route>
  6. );
  7.  
  8. onSubmit() {
  9. this.context.router.push('/signup_verify')
  10. }
  11.  
  12. @reduxForm({
  13. form: 'myForm'
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement