Trait sycamore::view::IntoView[][src]

pub trait IntoView<G: GenericNode> {
    fn create(&self) -> View<G>;
}
Expand description

Trait for describing how something should be rendered into DOM nodes.

Required methods

Called during the initial render when creating the DOM nodes. Should return a Vec of GenericNodes.

Implementors