pub fn text<S, MSG>(s: S) -> Node<MSG>where S: ToString,
Create a text node element
use sauron::{*, html::*}; let node: Node<()> = text("hi");