Optional
Beta
Callback that allows developers to customize the members present in the fieldset. It can be used to add decoration members to the fieldset, instead of using empty fields. For example:
import { Decoration } from './Decoration'renderMembers: (members) => { return [ ...members, { key: 'decoration', kind: 'decoration', component: Decoration, }, ] Copy
import { Decoration } from './Decoration'renderMembers: (members) => { return [ ...members, { key: 'decoration', kind: 'decoration', component: Decoration, }, ]
Callback that allows developers to customize the members present in the fieldset. It can be used to add decoration members to the fieldset, instead of using empty fields. For example: