Skip to main content

component

Attribute Macro component 

Source
#[component]
Expand description

#[component] — registers a function as a Resuma component.

#[component]
fn Greeting(name: String) -> View {
    view! { <h1>"Hello "{name}</h1> }
}