3 lines
58 B
JavaScript
3 lines
58 B
JavaScript
|
function redirect(path) {
|
||
|
window.location.href = path;
|
||
|
}
|