convert help page into standalone component and add lazy loading

This commit is contained in:
2024-10-01 18:47:34 +02:00
parent 9ccb7a14b5
commit ee0eab22f8
3 changed files with 3 additions and 5 deletions

View File

@@ -3,7 +3,8 @@ import { Component, OnInit } from '@angular/core';
@Component({
selector: 'pdb-help-page',
templateUrl: './help-page.component.html',
styleUrls: ['./help-page.component.scss']
styleUrls: ['./help-page.component.scss'],
standalone: true
})
export class HelpPageComponent implements OnInit {