## FormFieldGroups `FormFieldGroups` components are field groups associated with a particular model. They render individual `FormField` components. | Param | Type | Default | Description | | --- | --- | --- | --- | | [renderGroup] | String | | A whitelist of groups to include in the render. | | model | DS.Model | | Model to be passed down to form-field component. If `fieldGroups` is present on the model then it will be iterated over and groups of `FormField` components will be rendered. | | onChange | Func | | Handler that will get set on the `FormField` component. | **Example** ```js {{if model.fieldGroups}} {{/if}} ... ``` **See** - [Uses of FormFieldGroups](https://github.com/hashicorp/vault/search?l=Handlebars&q=FormFieldGroups) - [FormFieldGroups Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/form-field-groups.js) ---