Skip to content

@pgege/kaboo-react


Function: GlassTabs()

GlassTabs(): Element | null

Defined in: components/GlassTabs.tsx:24

Breadcrumb navigation for the drill-down path: a "Chat" root followed by one crumb per drilled-in group. Clicking a crumb jumps to that level; the current (last) crumb is disabled. Renders nothing at the root. Pair with DrillDetailView.

Returns

Element | null

Example

import { GlassTabs, DrillDetailView } from "@pgege/kaboo-react";

function DrillArea() {
  return (
    <>
      <GlassTabs />
      <DrillDetailView />
    </>
  );
}