#![allow(missing_docs)]
#[derive(Debug, Clone, PartialEq, property::Property, serde::Serialize)]
#[property(get(public), set(private), mut(disable))]
pub struct ComponentReference {
pub(crate) id: String,
}
impl ComponentReference {
pub fn new<T: Into<String>>(id: T) -> Self {
Self { id: id.into() }
}
}