Added map page. Fixed navbar coloring when on a page.

This commit is contained in:
Peter
2025-04-05 18:32:55 +02:00
parent a5ef610a09
commit 8d0da93c99
6 changed files with 51 additions and 5 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MapComponent } from './map.component';
describe('MapComponent', () => {
let component: MapComponent;
let fixture: ComponentFixture<MapComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [MapComponent]
})
.compileComponents();
fixture = TestBed.createComponent(MapComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});