diff --git a/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.html b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.html new file mode 100644 index 0000000000000000000000000000000000000000..6094aa9f50aa1d93f83f21960e62169fa49cb1d3 --- /dev/null +++ b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.html @@ -0,0 +1 @@ +<p>about works!</p> diff --git a/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.scss b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.spec.ts b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..bbad86590341eb82f2360796694dd8c002b0c4e3 --- /dev/null +++ b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.spec.ts @@ -0,0 +1,22 @@ +import {ComponentFixture, TestBed} from '@angular/core/testing'; + +import {AboutComponent} from './about.component'; + +describe('AboutComponent', () => { + let component: AboutComponent; + let fixture: ComponentFixture<AboutComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [AboutComponent], + }).compileComponents(); + + fixture = TestBed.createComponent(AboutComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.ts b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..4800d5b64ab0af02c9074df6f1f37ca305606923 --- /dev/null +++ b/projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.ts @@ -0,0 +1,10 @@ +import {Component} from '@angular/core'; + +@Component({ + selector: 'app-about', + standalone: true, + imports: [], + templateUrl: './about.component.html', + styleUrl: './about.component.scss', +}) +export class AboutComponent {}