5c5a33f6df
* Add Toolbar stories * Update ConfirmAction story
25 lines
494 B
JavaScript
25 lines
494 B
JavaScript
/**
|
|
* @module Toolbar
|
|
* `Toolbar` components are containers for Toolbar actions.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <Toolbar>
|
|
* <ToolbarActions>
|
|
* <ToolbarSecretLink @params={{array 'vault.cluster.policies.create'}} @type="add">
|
|
* Create policy
|
|
* </ToolbarSecretLink>
|
|
* </ToolbarActions>
|
|
* </Toolbar>
|
|
* ```
|
|
*
|
|
*/
|
|
|
|
import Component from '@ember/component';
|
|
import layout from '../templates/components/toolbar';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
layout,
|
|
});
|