ラベル

任意のテキストまたは文字列を表示するには、コンポーネント label を使用します。
JUI のラベルコンポーネントは HTML <label/> を表します。

以下は、静的ラベルを追加する例です

const staticLabelJSON =  {
    "component": "label", //tells the component name
    "label": "This is an example label", // the string to be displayed
}

以下の JSON は、動的文字列を表示します。

const labelJSON =  {
    "component": "label", //tells the component name
    "label": "@name", // the variable storing the text to be displayed
},

レンダリングされたラベルは次のようになります。

label

recommendation-more-help
11125c99-e1a1-4369-b5d7-fb3098b9b178