Skip to content

Commit 81e7e4d

Browse files
committed
docs: minor improvements
1 parent 29824ec commit 81e7e4d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/website/content/docs/configurations.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,13 @@ then the React Hook call:
119119
useIsomorphicLayoutEffect(() => { setCount(count => count + 1); }, []);
120120
```
121121

122-
will be evaluated as an:
122+
will be evaluated as:
123+
124+
```tsx
125+
useEffect(() => { setCount(count => count + 1); }, []);
126+
```
127+
128+
and:
123129

124130
```tsx
125131
useLayoutEffect(() => { setCount(count => count + 1); }, []);

0 commit comments

Comments
 (0)