20 lines
590 B
TypeScript
20 lines
590 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { Location } from '@angular/common';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { BtnBackComponent } from '../buttons/btn-back/btn-back.component';
|
|
|
|
@Component({
|
|
selector: 'app-help',
|
|
standalone: true,
|
|
imports: [RouterModule, TranslateModule, BtnBackComponent],
|
|
templateUrl: './help.component.html',
|
|
styleUrl: './help.component.scss',
|
|
})
|
|
export class HelpComponent {
|
|
constructor(private location: Location) {}
|
|
|
|
backClicked() {
|
|
this.location.back();
|
|
}
|
|
}
|