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
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import {Component} from '@angular/core';
|
|
import {HeaderComponent} from "@header/header.component";
|
|
|
|
@Component({
|
|
selector: 'app-staffpowers',
|
|
imports: [
|
|
HeaderComponent
|
|
],
|
|
templateUrl: './staffpowers.component.html',
|
|
styleUrl: './staffpowers.component.scss'
|
|
})
|
|
export class StaffpowersComponent {
|
|
|
|
}
|