3 lines
67 B
JavaScript
3 lines
67 B
JavaScript
|
const goToPage = (page) => {
|
||
|
window.location.href = `${page}`
|
||
|
}
|