Skip to content

Commit d7a1524

Browse files
authored
Add instruction on navigating back to previous page
I have been searching in the tutorials and guides but unable to find the instruction on how to navigate back to the previous page. I hope this addition will help more users.
1 parent 5538899 commit d7a1524

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/guides/NavigatingOutsideOfComponents.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,9 @@ render(<Router history={browserHistory} routes={routes}/>, el)
1414
import { browserHistory } from 'react-router'
1515
browserHistory.push('/some/path')
1616
```
17+
18+
```js
19+
// Go back to previous page
20+
import { browserHistory } from 'react-router'
21+
browserHistory.goBack()
22+
```

0 commit comments

Comments
 (0)