pub trait HType { fn with_js<T>(&self, f: impl FnOnce(&JsValue) -> T) -> T; }
A marker trait for the component type that H is supposed to build.
H
Can either be HtmlTag or any imported component.
HtmlTag
Acquires a reference to the JsValue of this component type.
JsValue