aboutsummaryrefslogtreecommitdiff
path: root/src/content/navigates.js
blob: 28f34c5b2ec0b48826d2ca4bb6b7abd17c2bc28d (plain) (blame)
1
2
3
4
5
6
7
8
const historyPrev = (win) => {
  win.history.back();
};
const historyNext = (win) => {
  win.history.forward();
};

export { historyPrev, historyNext };