2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
2023-08-11 13:12:13 +00:00
|
|
|
* SPDX-License-Identifier: BUSL-1.1
|
2023-03-14 13:18:55 +00:00
|
|
|
*/
|
|
|
|
|
2020-11-30 16:52:13 +00:00
|
|
|
import Component from '@glimmer/component';
|
2020-06-17 09:25:54 +00:00
|
|
|
import chart from './chart.xstate';
|
2019-06-21 10:42:40 +00:00
|
|
|
|
2023-10-17 13:27:42 +00:00
|
|
|
export default class ConsulCopyButton extends Component {
|
2020-11-30 16:52:13 +00:00
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
2020-06-17 09:25:54 +00:00
|
|
|
this.chart = chart;
|
2020-11-30 16:52:13 +00:00
|
|
|
}
|
|
|
|
}
|