pub trait HType { // Required method fn as_js(&self) -> Cow<'_, JsValue>; }
A marker trait for the component type that H is supposed to build.
H
Can either be HtmlTag or any imported component.
HtmlTag
Returns a reference to the JsValue of this component type.
JsValue