feat(challenge23): test harnesses

This commit is contained in:
thomas
2023-06-06 09:54:00 +02:00
parent b61028c744
commit 8ad3448be0
20 changed files with 483 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
import { ChildComponent } from './child.component';
@Component({
standalone: true,
imports: [ChildComponent],
selector: 'app-root',
template: `<app-child />`,
styles: [''],
})
export class AppComponent {}