We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b92ebb commit 6b83293Copy full SHA for 6b83293
1 file changed
docs/ref/Props.md
@@ -171,15 +171,17 @@ A simple section header to help group fields together
171
}
172
```
173
174
-### Button
+### Buttons
175
176
-A button that when pressed can execute something in the running instance of the app.
+Displays one or more buttons that when clicked, execute something in the running app.
177
178
```jsx
179
{
180
- type: 'button',
+ type: 'buttons',
181
key: String, // a unique `key` for this button
182
label: String, // the label for the button
183
- onClick: Function, // the function that is called when the button is pressed.
+ buttons: [
184
+ ...{ label: String, onClick: Function },
185
+ ]
186
187
0 commit comments