pub trait HType {
    fn as_js(&self) -> Cow<'_, JsValue>;
}
Expand description

A marker trait for the component type that H is supposed to build.

Can either be HtmlTag or any imported component.

Required Methods

Returns a reference to the JsValue of this component type.

Implementors