pors / reactionic

React Ionic: We are looking for a new maintainer!

Home Page:http://reactionic.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Back button

DarrylD opened this issue · comments

Noticed this.props.history in the guide

var backButton = (
  <IonNavBackButton icon="ion-ios-arrow-back"
                    color=""
                    type="clear"
                    history={this.props.history}
                    customClasses="button-stage"
  />
);

What does that do? Not seeing any reference in the src.

It provides the history object from here: https://github.com/reactionic/reactionic-kitchensink/blob/master/app/client/router.jsx#L97

This is needed for the back button to know what "back" means.

Ah wait! That has been replaced by context now of course. Is indeed an error in the documentation. Thanks!