//! Helpers for building virtual DOM nodes. use crate::nodes::{Attribute, Listener, NodeKey, VNode}; type Node<'g> = VNode<'g>; use bumpalo::Bump; /// A virtual DOM element builder. /// /// Typically constructed with element-specific constructors, eg the `div` /// function for building `
` elements or the `button` function for building /// `