UNPKG

preact

Version:

Fast 3kb React-compatible Virtual DOM library.

12 lines (9 loc) 286 B
import * as preact from '../src'; export function createRoot(container: preact.ContainerNode): { render(children: preact.ComponentChild): void; unmount(): void; }; export function hydrateRoot( container: preact.ContainerNode, children: preact.ComponentChild ): typeof createRoot;