From 8dbe12452b5dc682138e2453930ab32b224a70fb Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Tue, 12 Nov 2024 12:28:25 -0700 Subject: [PATCH] add initial about component --- .../components/about/about.component.html | 1 + .../components/about/about.component.scss | 0 .../components/about/about.component.spec.ts | 22 +++++++++++++++++++ .../components/about/about.component.ts | 10 +++++++++ 4 files changed, 33 insertions(+) create mode 100644 projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.html create mode 100644 projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.scss create mode 100644 projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.spec.ts create mode 100644 projects/nshmp-apps/src/app/ncm/geophysical-profiles/components/about/about.component.ts 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 000000000..6094aa9f5 --- /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 000000000..e69de29bb 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 000000000..bbad86590 --- /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 000000000..4800d5b64 --- /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 {} -- GitLab