John Cowen a6996b6ea5
ui: CopyButton amends (#10511)
* ui: Add with-copyable modifier

* Use with-copyable modifier for our own CopyButton

* Move copy-button styling and remove most of `copy-btn`
2021-07-06 16:56:36 +01:00

10 lines
206 B
JavaScript

import Component from '@glimmer/component';
import chart from './chart.xstate';
export default class CopyButton extends Component {
constructor() {
super(...arguments);
this.chart = chart;
}
}