shack/assets/js/navigate.js

9 lines
203 B
JavaScript
Raw Permalink Normal View History

// centralize navigation to simplify switching between client and server routing
2023-06-25 17:52:00 +00:00
export function navigate(path) {
window.location.href = path;
}
2023-06-11 03:32:02 +00:00
export function reload() {
window.location.reload();
}