mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-30 01:17:07 +02:00
docs: remove 'import type' declaration in javascript snippet (#9180)
This commit is contained in:
parent
2276dfbd3e
commit
983fb2d273
1 changed files with 0 additions and 2 deletions
|
@ -137,8 +137,6 @@ For every route transition, there will be several important timings:
|
||||||
Note that the new page's DOM is only available during event (4). If you need to manipulate the new page's DOM, you'll likely want to use `onRouteDidUpdate`, which will be fired as soon as the DOM on the new page has mounted.
|
Note that the new page's DOM is only available during event (4). If you need to manipulate the new page's DOM, you'll likely want to use `onRouteDidUpdate`, which will be fired as soon as the DOM on the new page has mounted.
|
||||||
|
|
||||||
```js title="myClientModule.js"
|
```js title="myClientModule.js"
|
||||||
import type {Location} from 'history';
|
|
||||||
|
|
||||||
export function onRouteDidUpdate({location, previousLocation}) {
|
export function onRouteDidUpdate({location, previousLocation}) {
|
||||||
// Don't execute if we are still on the same page; the lifecycle may be fired
|
// Don't execute if we are still on the same page; the lifecycle may be fired
|
||||||
// because the hash changes (e.g. when navigating between headings)
|
// because the hash changes (e.g. when navigating between headings)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue