aboutsummaryrefslogtreecommitdiff
path: root/src/content/histories.js
blob: 2e34dc6199ce30e2efebe1f8a0157895ffc65119 (plain) (blame)
1
2
3
4
5
6
7
8
const prev = (win) => {
  win.history.back()
};
const next = (win) => {
  win.history.forward()
};

export { prev, next };