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

add initial plot settings panel component

parent c20535ad
No related branches found
No related tags found
1 merge request!523NCM: Geophysical
<p>plot-settings-panel works!</p>
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {PlotSettingsPanelComponent} from './plot-settings-panel.component';
describe('PlotSettingsPanelComponent', () => {
let component: PlotSettingsPanelComponent;
let fixture: ComponentFixture<PlotSettingsPanelComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PlotSettingsPanelComponent],
}).compileComponents();
fixture = TestBed.createComponent(PlotSettingsPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import {Component} from '@angular/core';
@Component({
selector: 'app-plot-settings-panel',
standalone: true,
imports: [],
templateUrl: './plot-settings-panel.component.html',
styleUrl: './plot-settings-panel.component.scss',
})
export class PlotSettingsPanelComponent {}
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