mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
|
import Component from '@glimmer/component';
|
||
|
|
||
|
export default class ChartEngagement extends Component {
|
||
|
get data30Days() {
|
||
|
return '67%';
|
||
|
}
|
||
|
|
||
|
get data7Days() {
|
||
|
return '31%';
|
||
|
}
|
||
|
}
|