//! Data display: components that present structured content.
//!
//! - [`Avatar`], [`List`], [`Table`] are stateless `RenderOnce` builders.
//! - [`Tabs`] and [`Accordion`] are gpui entities that own selection /
//! expansion state. Their panel content is supplied as a builder closure so
//! it can be rebuilt each frame.
pub use Accordion;
pub use Avatar;
pub use AvatarGroup;
pub use List;
pub use Table;
pub use Tabs;
pub use Timeline;
use ;
/// A panel-content builder: re-invoked each render so stateful panels (Tabs,
/// Accordion) can show arbitrary, always-fresh content.
pub type Content = ;