usecrate::*;/// Reactive state for a lifecycle demo feature.
#[derive(Clone, Copy, Data, New)]pubstructUseLifecycle{/// The render count.
#[get(pub,type(copy))]#[set(pub)]pubrender_count:Signal<i32>,
/// The event log entries.
#[get(pub,type(copy))]#[set(pub)]publogs:Signal<Vec<String>>,
}