mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 13:53:03 -05:00
feat(doc): move decoupling
This commit is contained in:
11
apps/angular/decoupling/src/app/app.component.ts
Normal file
11
apps/angular/decoupling/src/app/app.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { BtnDisabledDirective } from '@angular-challenges/decoupling/brain';
|
||||
import { BtnHelmetDirective } from '@angular-challenges/decoupling/helmet';
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [BtnDisabledDirective, BtnHelmetDirective],
|
||||
selector: 'app-root',
|
||||
template: ` <button btnDisabled hlm>Coucou</button> `,
|
||||
})
|
||||
export class AppComponent {}
|
||||
Reference in New Issue
Block a user