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
17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import {Component} from '@angular/core';
|
|
import {HeaderComponent} from '@header/header.component';
|
|
import {NgOptimizedImage} from '@angular/common';
|
|
|
|
@Component({
|
|
selector: 'app-mypet',
|
|
imports: [
|
|
HeaderComponent,
|
|
NgOptimizedImage
|
|
],
|
|
templateUrl: './mypet.component.html',
|
|
styleUrl: './mypet.component.scss'
|
|
})
|
|
export class MypetComponent {
|
|
|
|
}
|