mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
fix: run prettier on all file to avoid prettier issue inside PR
This commit is contained in:
@@ -4,9 +4,10 @@ import { Component, Inject } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'lib-home',
|
||||
template: `Home component
|
||||
template: `
|
||||
Home component
|
||||
|
||||
<section class="flex gap-5 items-center">
|
||||
<section class="flex items-center gap-5">
|
||||
Authorization :
|
||||
<button class="border p-2 " (click)="authorizeService.authorize()">
|
||||
Authorize
|
||||
@@ -17,11 +18,12 @@ import { Component, Inject } from '@angular/core';
|
||||
(isAuthorized: {{ authorizeService.isAuthorized$ | async }})
|
||||
</section>
|
||||
|
||||
<section>LoadedToken {{ token }}</section> `,
|
||||
<section>LoadedToken {{ token }}</section>
|
||||
`,
|
||||
})
|
||||
export class HomeComponent {
|
||||
constructor(
|
||||
public authorizeService: AuthorizationService,
|
||||
@Inject(TOKEN) public token: string
|
||||
@Inject(TOKEN) public token: string,
|
||||
) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user