//! Helpers for building virtual DOM VNodes. use crate::{ nodes::{Attribute, Listener, NodeKey, VNode}, prelude::VElement, }; 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 /// `