I have an component that it goBack to the previous page. I use that: this.props.history.goBack();
but I wanna that go back two levels. I have tried a lot of thing as this.props.history.goBack(-2);
but I do not achieve that. I am using ReactRouter v4.
How could I do that? Thank you.