1
0
Fork 0
mirror of synced 2024-09-14 16:27:26 +12:00
budibase/packages/server/appPackages/testApp2/customComponents/components.json

23 lines
481 B
JSON
Raw Normal View History

{
"textbox" : {
"path": "./textbox",
"name": "Textbox",
"description": "A text input, with a label",
"props": {
"label": "string",
"content": "component"
},
"tags": ["textbox", "input", "text"]
},
"button" : {
"path": "./button",
"name": "Button",
"description": "a button",
"props": {
"contentText": "string",
"contentComponent": "component",
"class": "string"
},
"tags": ["button"]
}
}