use ;
/// A Panel component
///
/// ## Example
/// ```
/// # use re_viewer::blueprint_components::panel::PanelState;
/// # use arrow2_convert::field::ArrowField;
/// # use arrow2::datatypes::{DataType, Field};
/// assert_eq!(
/// PanelState::data_type(),
/// DataType::Struct(vec![
/// Field::new("expanded", DataType::Boolean, false),
/// ])
/// );
/// ```
// TODO(jleibs): If we want these accessible from python, they need to
// go into the registry that's back in `re_log_types`
arrow2convert_component_shim!;