@vortexjs/dom
v3.0.7
Published
Vortex DOM is a DOM renderer for Vortex, supporting hydration!
Downloads
28
Readme
Vortex DOM
Vortex DOM is a DOM renderer for Vortex, supporting hydration!
The API surface is very simple, just like Vortex itself (internal types elided):
function useAnimationFrame(callback: (props: {
timeMs: number;
deltaTimeMs: number;
deltaTimeSec: number;
}) => void): void; // as requestAnimationFrame is not available in Node.js, this is considered DOM-specific
function html(): Renderer<Node, HTMLHydrationContext>;