use crate::*;
#[derive(Clone, Copy, Data, New)]
pub(crate) struct UseTodoList {
#[get(pub, type(copy))]
pub(crate) items: Signal<Vec<String>>,
#[get(pub, type(copy))]
pub(crate) new_item: Signal<String>,
#[get(pub, type(copy))]
pub(crate) add_error: Signal<String>,
}