mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- 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>
47 lines
1.0 KiB
JSON
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" }
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|