pub fn none() -> Element
Renders nothing. Useful fo conditional rendering.
use fun_html::{Element, elt::{text, none}}; let say_hello = true; let element: Element = if say_hello { text("Hello") } else { none() };