import Component, { tracked, action } from '@glimmer/component'; export default class extends Component { @tracked count = 0; @action increment() { this.count++; } }