pub trait PropsFactory<S, C, A, Ctx>: 'staticwhere
C: InteractiveComponent<A, Ctx> + 'static,{
// Required method
fn props<'a>(&self, state: &'a S) -> C::Props<'a>;
}Expand description
Factory that builds component props from store state.