use crate::*;
#[derive(Clone, Copy, Data, New)]
pub(crate) struct UseSelect {
#[get(type(copy))]
pub(crate) selected_fruit: Signal<String>,
#[get(type(copy))]
pub(crate) selected_country: Signal<String>,
#[get(type(copy))]
pub(crate) selected_city: Signal<String>,
#[get(type(copy))]
pub(crate) feedback: Signal<String>,
#[get(type(copy))]
pub(crate) textarea_content: Signal<String>,
#[get(type(copy))]
pub(crate) textarea_error: Signal<String>,
}