Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/pages/docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Isoflow takes _100%_ of `width` and `height` of the containing block so make sur

### Integration with NextJS

Isoflow cannot be server-side rendered and has to be imported using `next/dyanmic`:
Isoflow cannot be server-side rendered and has to be imported using `next/dynamic`:

```jsx showLineNumbers filename="IsoflowDynamic.jsx"
import dynamic from 'next/dynamic';
Expand All @@ -53,4 +53,4 @@ const App = () => {
}

export default App;
```
```