use crate::*;
pub(crate) struct ChildDisplayProps {
pub(crate) message: String,
pub(crate) on_respond: Option<NativeEventHandler>,
}
pub(crate) struct LimitedCounterProps {
pub(crate) disabled: bool,
pub(crate) max_count: i32,
pub(crate) on_increment: Option<NativeEventHandler>,
pub(crate) on_reset: Option<NativeEventHandler>,
}
pub(crate) struct CallbackInputProps {
pub(crate) on_change: Option<NativeEventHandler>,
pub(crate) on_submit: Option<NativeEventHandler>,
pub(crate) on_reset: Option<NativeEventHandler>,
}