PromucFlow_constructor/app/client/src/mockResponses/QueryConfigResponse.tsx
akash-codemonk a0351bfe81
Get query ui from form config (#205)
* Get query ui from form config

* Update editor config selector

* Show error message when config is undefined

* Move FormLabel to components

* Show dark theme in query editor

* Allow query name to be focused
2020-08-12 11:57:35 +05:30

21 lines
377 B
TypeScript

const queryConfigResponse = [
{
sectionName: "",
id: 1,
children: [
{
label: "",
configProperty: "actionConfiguration.body",
controlType: "QUERY_DYNAMIC_TEXT",
},
{
label: "Label",
configProperty: "property",
controlType: "INPUT_TEXT",
},
],
},
];
export default queryConfigResponse;