import { CDFlashingDirective } from '@angular-challenges/shared/directives'; import { Component } from '@angular/core'; @Component({ selector: 'app-random', standalone: true, template: `
I do nothing but I'm here
`, imports: [CDFlashingDirective], }) export class RandomComponent {}