Skip to content

Commit

Permalink
fix typo in example section of dynamic-import.md (#37834)
Browse files Browse the repository at this point in the history
change "in page's the" to "in the page's"
  • Loading branch information
ekamkohli committed Jun 20, 2022
1 parent 4ed0b78 commit 3bf0fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced-features/dynamic-import.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Next.js supports lazy loading external libraries with `import()` and React compo

## Example

By using `next/dynamic`, the header component will not be included in page's the initial JavaScript bundle. The page will render the Suspense `fallback` first, followed by the `Header` component when the `Suspense` boundary is resolved.
By using `next/dynamic`, the header component will not be included in the page's initial JavaScript bundle. The page will render the Suspense `fallback` first, followed by the `Header` component when the `Suspense` boundary is resolved.

```jsx
import dynamic from 'next/dynamic'
Expand Down

0 comments on commit 3bf0fcf

Please sign in to comment.