ObjectUIObjectUI

Container

Centered content container with max-width

Examples

Basic Container

{
  "type": "container",
  "children": [
    {
      "type": "text",
      "content": "Content inside container",
      "variant": "h3"
    }
  ]
}

Schema

interface ContainerSchema {
  type: 'container';
  children: SchemaNode[];
  className?: string;
}

On this page