Skip to content
Snippets Groups Projects
Commit 8dbe1245 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add initial about component

parent 48bf981a
No related branches found
No related tags found
1 merge request!523NCM: Geophysical
<p>about works!</p>
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();
});
});
import {Component} from '@angular/core';
@Component({
selector: 'app-about',
standalone: true,
imports: [],
templateUrl: './about.component.html',
styleUrl: './about.component.scss',
})
export class AboutComponent {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment