adding example data for pfits 18/55 and hovering over cells. Next up is clicking to change color to green and right clicking to reset to white.

This commit is contained in:
Will Baumbach
2026-03-26 16:39:30 -05:00
parent 6067c6a471
commit 7ae3dbd27f
9 changed files with 1073 additions and 337 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CalendarComponent } from './calendar.component';
describe('CalendarComponent', () => {
let component: CalendarComponent;
let fixture: ComponentFixture<CalendarComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [CalendarComponent]
})
.compileComponents();
fixture = TestBed.createComponent(CalendarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});