mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 22:03:03 -05:00
11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
import { CDFlashingDirective } from '@angular-challenges/shared/directives';
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-random',
|
|
standalone: true,
|
|
template: `<div cd-flash>I do nothing but I'm here</div>`,
|
|
imports: [CDFlashingDirective],
|
|
})
|
|
export class RandomComponent {}
|