use crate::*;
#[derive(Clone, Copy, Data, New)]
pub struct UseFetch {
#[get(pub, type(copy))]
#[set(pub)]
pub(crate) loading: Signal<bool>,
#[get(pub, type(copy))]
#[set(pub)]
pub(crate) data: Signal<String>,
#[get(pub, type(copy))]
#[set(pub)]
pub(crate) error: Signal<String>,
}