ObjectUIObjectUI

Card

Container with header, content, and footer sections

Examples

Basic Card

Card Title
Card description
Card content goes here

With Footer

Settings
Configure your preferences

Schema

interface CardSchema {
  type: 'card';
  title?: string;
  description?: string;
  children?: SchemaNode[];
  header?: SchemaNode[];
  footer?: SchemaNode[];
  className?: string;
}

On this page