mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 05:13:02 -05:00
17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
import { Component } from '@angular/core';
|
|
import { TimerContainerComponent } from './timer-container.component';
|
|
|
|
@Component({
|
|
selector: 'app-video',
|
|
standalone: true,
|
|
imports: [TimerContainerComponent],
|
|
template: `
|
|
<div class="flex gap-2">
|
|
Video Call Timer:
|
|
<p class="italic">(should be the default 1000s)</p>
|
|
</div>
|
|
<timer-container />
|
|
`,
|
|
})
|
|
export default class VideoComponent {}
|