hydrate
Edit this pageimport { hydrate } from "solid-js/web"import type { JSX } from "solid-js"import type { MountableElement } from "solid-js/web"
function hydrate(  fn: () => JSX.Element,  node: MountableElement,  options?: { renderId?: string; owner?: unknown }): () => voidThis method is similar to render except that it attempts to rehydrate what is already rendered to the DOM.
When initializing in the browser a page has already been server rendered.
const dispose = hydrate(App, document.getElementById("app"))Parameters
| Prop | type | description | 
|---|---|---|
| fn | () => JSX.Element | Function that returns the application code. | 
| node | MountableElement | DOM Element to mount the application to | 
| options.renderId | string | |
| options.owner | unknown |