61842beb3b
* ui: Add with-copyable modifier * Use with-copyable modifier for our own CopyButton * Move copy-button styling and remove most of `copy-btn`
10 lines
206 B
JavaScript
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;
|
|
}
|
|
}
|