Skip to content

Instantly share code, notes, and snippets.

View camnicklaus's full-sized avatar

cameron nicklaus camnicklaus

View GitHub Profile
import Controller from '@ember/controller';
import { tracked } from '@glimmer/tracking';
class Timer {
@tracked currentTime = new Date();
constructor() {
this.startTimer();
}