pub type Node<MSG> = Node<Widget, Event, MSG>;
pub enum Node<MSG> { Element(Element<Widget, Event, MSG>), Text(Text), }