1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use re_viewer_context::{
    external::{
        re_chunk_store::{LatestAtQuery, RowId},
        re_entity_db::EntityDb,
        re_log_types::EntityPath,
    },
    UiLayout, ViewerContext,
};

#[allow(clippy::too_many_arguments)]
pub fn fallback_component_ui(
    _ctx: &ViewerContext<'_>,
    ui: &mut egui::Ui,
    ui_layout: UiLayout,
    _query: &LatestAtQuery,
    _db: &EntityDb,
    _entity_path: &EntityPath,
    _row_id: Option<RowId>,
    component: &dyn arrow::array::Array,
) {
    re_ui::arrow_ui(ui, ui_layout, component);
}