Pages are now grouped per group they appear in on in the header (where possible) Utilities used by multiple pages in the project are grouped in folders such as services/pipes/etc
19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
import {Component} from '@angular/core';
|
|
import {HeaderComponent} from '@header/header.component';
|
|
import {NgOptimizedImage} from '@angular/common';
|
|
import {RouterLink} from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-claiming',
|
|
imports: [
|
|
HeaderComponent,
|
|
NgOptimizedImage,
|
|
RouterLink
|
|
],
|
|
templateUrl: './claiming.component.html',
|
|
styleUrl: './claiming.component.scss'
|
|
})
|
|
export class ClaimingComponent {
|
|
|
|
}
|