Trait sycamore::component::Component[][src]

pub trait Component<G: GenericNode> {
    const NAME: &'static str;
}
Expand description

Trait that is implemented by components. Should not be implemented manually. Use the component macro instead.

Associated Constants

The name of the component (for use in debug mode).

Implementors