lightspeed/component/story
Story helpers for function-component template fixtures.
Types
One deterministic template story fixture.
pub type Story(assigns, slots) {
Story(
name: String,
component: fn(assigns, slots) -> component.Rendered,
assigns: assigns,
slots: slots,
)
}
Constructors
-
Story( name: String, component: fn(assigns, slots) -> component.Rendered, assigns: assigns, slots: slots, )
Values
pub fn story(
name: String,
component: fn(assigns, slots) -> component.Rendered,
assigns: assigns,
slots: slots,
) -> Story(assigns, slots)
Build one story.