refactor: move libs

This commit is contained in:
thomas
2024-05-11 09:05:59 +02:00
parent 216d485c53
commit 4a3c7f23e0
284 changed files with 263 additions and 260 deletions

View File

@@ -0,0 +1,16 @@
import { Component } from '@angular/core';
import { TimerContainerComponent } from './timer-container.component';
@Component({
selector: 'app-phone',
standalone: true,
imports: [TimerContainerComponent],
template: `
<div class="flex gap-2">
Phone Call Timer:
<p class="italic">(should be 2000s)</p>
</div>
<timer-container />
`,
})
export default class PhoneComponent {}