mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 05:43:03 -05:00
refactor: move libs
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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