feat(doc): move decoupling

This commit is contained in:
thomas
2023-10-18 10:00:25 +02:00
parent fc93515530
commit 22df1ad237
30 changed files with 31 additions and 1090 deletions

View 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 {}