[][src]Module virtual_dom_rs::prelude

Exports structs and macros that you'll almost always want access to in a virtual-dom powered application

Re-exports

pub use html_macro::html;
pub use html_macro::text;

Structs

DomUpdater

Used for keeping a real DOM node up to date based on the current VirtualNode and a new incoming VirtualNode that represents our latest DOM state.

Enums

VirtualNode

When building your views you'll typically use the html! macro to generate VirtualNode's.

Traits

View

A trait with common functionality for rendering front-end views.