ObjectUIObjectUI

Stack

Vertical stack layout for organizing content

Examples

Basic Stack

Item 1Item 2Item 3

Schema

interface StackSchema {
  type: 'stack';
  gap?: number;
  children: SchemaNode[];
  className?: string;
}

On this page