1 2 3 4 5 6 7 8
const prev = (win) => { win.history.back(); }; const next = (win) => { win.history.forward(); }; export { prev, next };