ObjectUIObjectUI

Tabs

Organize content into switchable tabs

Examples

Basic Tabs

Schema

interface TabsSchema {
  type: 'tabs';
  items: Array<{
    label: string;
    content: SchemaNode[];
  }>;
  defaultValue?: number;
}

On this page