@Component({
imports: [
// Buy to unlock
],
selector: 'jet-logout-page',
standalone: true,
styleUrl: './logout-page.component.scss',
templateUrl: './logout-page.component.html',
})
export class LogoutPageComponent implements OnInit {
private readonly _authenticationService = inject(AuthenticationService);
private readonly _loggerService = inject(LoggerService);
public constructor() {
// Buy to unlock
}
public ngOnInit(): void {
// Buy to unlock
}
}