Update README.es.md

This commit is contained in:
Jen Looper
2021-05-31 21:32:54 -04:00
committed by GitHub
parent 7c0498fbf7
commit 0298137d29

View File

@@ -210,7 +210,7 @@ Creemos una nueva función que podamos usar para navegar en nuestra aplicación:
```js ```js
function navigate(path) { function navigate(path) {
window.history.pushState({}, path, window.location.origin + path); window.history.pushState({}, path, path);
updateRoute(); updateRoute();
} }
``` ```