aboutsummaryrefslogtreecommitdiff
path: root/src/content/histories.js
blob: 9c5665d9457604780f6ae03175342c38a0974aeb (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 };