diff --git a/.prettierignore b/.prettierignore
index e53f45f2..0d7dcb7d 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -3,4 +3,5 @@
/generated
/public
+README.md
integrations/next/.next
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d3487914..1bdbb206 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## 2.2.6
+
+- `useDynamicRowHeight` should not instantiate `ResizeObserver` when server-rendering
+
## 2.2.5
- Use `defaultHeight`/`defaultWidth` prop to server render initial set of rows/cells
diff --git a/README.md b/README.md
index 4d66fb26..562eae43 100644
--- a/README.md
+++ b/README.md
@@ -39,9 +39,7 @@ Documentation for this project is available at [react-window.vercel.app](https:/
### List
-
Renders data with many rows.
-
#### Required props
@@ -168,12 +166,10 @@ The default value is "div", meaning that List renders an HTMLDivElemen
### Grid
-
Renders data with many rows and columns.
ℹ️ Unlike `List` rows, `Grid` cell sizes must be known ahead of time.
Either static sizes or something that can be derived (from the data in `CellProps`) without rendering.
-
#### Required props
diff --git a/integrations/next/app/list-dynamic/components/List.tsx b/integrations/next/app/list-dynamic/components/List.tsx
new file mode 100644
index 00000000..41b7e748
--- /dev/null
+++ b/integrations/next/app/list-dynamic/components/List.tsx
@@ -0,0 +1,22 @@
+"use client";
+
+import { List as ListExternal, useDynamicRowHeight } from "react-window";
+import { RowComponent } from "./RowComponent";
+
+export function List() {
+ const rowHeight = useDynamicRowHeight({
+ defaultRowHeight: 30
+ });
+
+ return (
+
+ );
+}
diff --git a/integrations/next/app/list-dynamic/components/RowComponent.tsx b/integrations/next/app/list-dynamic/components/RowComponent.tsx
new file mode 100644
index 00000000..061bda58
--- /dev/null
+++ b/integrations/next/app/list-dynamic/components/RowComponent.tsx
@@ -0,0 +1,15 @@
+"use client";
+
+import { type RowComponentProps } from "react-window";
+
+export function RowComponent({
+ ariaAttributes,
+ index,
+ style
+}: RowComponentProps