join/src/app/shared/components/help/help.component.ts
2024-03-23 09:28:10 +01:00

18 lines
425 B
TypeScript

import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
import { Location } from '@angular/common';
@Component({
selector: 'app-help',
standalone: true,
imports: [RouterModule],
templateUrl: './help.component.html',
styleUrl: './help.component.scss',
})
export class HelpComponent {
constructor(private location: Location) {}
backClicked() {
this.location.back();
}
}