open-vault/ui/lib/core/addon/components/field-group-show.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

26 lines
589 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
/**
* @module FieldGroupShow
* FieldGroupShow components are used to...
*
* @example
* ```js
* <FieldGroupShow @param1={param1} @param2={param2} />
* ```
*
* @param param1 {String} - param1 is...
* @param [param2=value] {String} - param2 is... //brackets mean it is optional and = sets the default value
*/
import Component from '@ember/component';
import layout from '../templates/components/field-group-show';
export default Component.extend({
layout,
model: null,
showAllFields: false,
});