{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "grid-list-render-empty-state-example",
  "title": "Grid List Render Empty State",
  "description": "grid-list-render-empty-state-example",
  "registryDependencies": [
    "https://intentui.com/r/grid-list"
  ],
  "files": [
    {
      "path": "src/components/examples/collections/grid-list/grid-list-render-empty-state-example.tsx",
      "content": "'use client'\n\nimport { GridList, GridListEmptyState } from '@/components/ui/grid-list'\n\nexport default function GridListRenderEmptyStateDemo() {\n  return (\n    <GridList\n      items={items}\n      aria-label=\"Select items\"\n      selectionMode=\"multiple\"\n      className=\"min-w-64\"\n      renderEmptyState={() => <GridListEmptyState>No bands selected</GridListEmptyState>}\n    />\n  )\n}\n\nconst items: Iterable<any> | undefined = []\n",
      "type": "registry:page",
      "target": "app/grid-list-render-empty-state-example/page.tsx"
    }
  ],
  "type": "registry:page"
}