16 lines
476 B
JavaScript
16 lines
476 B
JavaScript
|
/**
|
||
|
* @module FormFieldGroupsLoop
|
||
|
* FormFieldGroupsLoop components are used to show optional form fields, generally when setting up a secret engine.
|
||
|
*
|
||
|
* @example
|
||
|
* ```js
|
||
|
* <FormFieldGroupsLoop @model={{model}} @mode={{mode}}/>
|
||
|
* ```
|
||
|
* @param {object} model - the data model of the parent component
|
||
|
* @param {object} model - the mode: create show or edit.
|
||
|
*/
|
||
|
|
||
|
import Component from '@glimmer/component';
|
||
|
|
||
|
export default class FormFieldGroupsLoop extends Component {}
|