Files
metabuilder/codegen/fixtures/dev-qa/data.json
johndoe6345789 a51130a127 feat: Add external low-code and postgres repositories
- codegen: Low-code React app with JSON-driven component system
- packagerepo: Schema-driven package repository with backend/frontend
- postgres: Next.js app with Drizzle ORM and PostgreSQL

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 16:48:52 +00:00

47 lines
1.0 KiB
JSON

{
"id": "smoke-data",
"name": "Smoke Data",
"layout": {
"type": "single"
},
"dataSources": [],
"components": [
{
"id": "data-section",
"type": "section",
"children": [
{
"id": "data-heading",
"type": "Heading",
"props": {
"level": 3,
"children": "Data Smoke Check"
}
},
{
"id": "data-list",
"type": "List",
"props": {
"items": ["QA record A", "QA record B", "QA record C"],
"emptyMessage": "No QA records"
}
},
{
"id": "data-table",
"type": "Table",
"props": {
"columns": [
{ "key": "name", "header": "Name" },
{ "key": "status", "header": "Status" }
],
"data": [
{ "name": "Smoke Run", "status": "Pass" },
{ "name": "Regression", "status": "Pending" }
]
}
}
]
}
]
}