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
|
|
|
|
2020-11-30 16:52:13 +00:00
|
|
|
export default class CopyButton extends Component {
|
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
2020-06-17 09:25:54 +00:00
|
|
|
this.chart = chart;
|
2020-11-30 16:52:13 +00:00
|
|
|
}
|
|
|
|
}
|