8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
const prev = (win) => {
|
|
win.history.back()
|
|
};
|
|
const next = (win) => {
|
|
win.history.forward()
|
|
};
|
|
|
|
export { prev, next };
|