components/about/about.component.ts
About page for disaggregation application.
selector | app-about |
imports |
NshmpLibNgAboutContentComponent
NshmpLibNgAboutDescriptionComponent
NshmpLibNgAboutDescriptionTitleComponent
NshmpLibNgAboutUsingApplicationExpansionPanelComponent
NshmpLibNgAboutHeaderControlsComponent
NshmpLibNgAboutControlPanelComponent
|
templateUrl | ./about.component.html |
styleUrl | ./about.component.scss |
constructor()
|
Defined in components/about/about.component.ts:27
|
import {Component} from '@angular/core';
import {
NshmpLibNgAboutContentComponent,
NshmpLibNgAboutControlPanelComponent,
NshmpLibNgAboutDescriptionComponent,
NshmpLibNgAboutDescriptionTitleComponent,
NshmpLibNgAboutHeaderControlsComponent,
NshmpLibNgAboutUsingApplicationExpansionPanelComponent,
} from '@ghsc/nshmp-lib-ng/about';
/**
* About page for disaggregation application.
*/
@Component({
imports: [
NshmpLibNgAboutContentComponent,
NshmpLibNgAboutDescriptionComponent,
NshmpLibNgAboutDescriptionTitleComponent,
NshmpLibNgAboutUsingApplicationExpansionPanelComponent,
NshmpLibNgAboutHeaderControlsComponent,
NshmpLibNgAboutControlPanelComponent,
],
selector: 'app-about',
styleUrl: './about.component.scss',
templateUrl: './about.component.html',
})
export class AboutComponent {
constructor() {}
}
<nshmp-lib-ng-about-content>
<nshmp-lib-ng-about-description>
<nshmp-lib-ng-about-description-title>
The disaggregation application performs on-demand disaggregation of
probabilistic seismic hazard for USGS national seismic hazard models
(NSHMs) at a specified return-period or intensity measure level of
interest.
</nshmp-lib-ng-about-description-title>
</nshmp-lib-ng-about-description>
<!-- Using this application panel -->
<nshmp-lib-ng-about-using-application-expansion-panel>
<!-- About the header controls -->
<nshmp-lib-ng-about-header-controls [showSettingsIcon]="false" />
<!-- About the control panel -->
<nshmp-lib-ng-about-control-panel />
</nshmp-lib-ng-about-using-application-expansion-panel>
</nshmp-lib-ng-about-content>