use crate;
/// A generic tab that pairs a list pane with a detail pane.
///
/// Many views follow the list+detail pattern: a list of items on one side
/// and a detail view for the selected item on the other. This struct
/// captures that structural pairing, with specialized behavior added
/// via `impl Tab<ConcreteList, ConcreteDetail>` blocks.