File tree Expand file tree Collapse file tree
src/routes/reference/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,20 +39,20 @@ Content inside the boundary.
3939
4040- ** Type:** ` JSX.Element `
4141
42+ Returns the server-rendered children.
43+
4244## Behavior
4345
4446- During server rendering, children inside ` <NoHydration> ` render normally.
45- - During client hydration, Solid skips hydrating that subtree.
46- - Event listeners and reactive updates are not attached to content inside the boundary during hydration .
47+ - During client hydration, Solid leaves the existing server-rendered DOM in place and does not hydrate that subtree.
48+ - Interactive behavior inside the boundary does not hydrate on the client .
4749- Placing ` <Hydration> ` inside ` <NoHydration> ` does not override the no-hydration behavior.
4850
4951## Examples
5052
5153### Basic usage
5254
5355``` tsx
54- import { NoHydration } from " solid-js/web" ;
55-
5656function Example() {
5757 return (
5858 <div >
@@ -64,7 +64,3 @@ function Example() {
6464 );
6565}
6666```
67-
68- ## Related
69-
70- - [ ` <Portal> ` ] ( /reference/components/portal )
You can’t perform that action at this time.
0 commit comments