feat(challenges): add project canvas for testing

This commit is contained in:
thomas
2023-04-24 16:44:30 +02:00
parent ba0bc832ec
commit 257e55b3d4
97 changed files with 5044 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
import { NxWelcomeComponent } from './nx-welcome.component';
import { Component } from '@angular/core';
@Component({
standalone: true,
imports: [NxWelcomeComponent],
selector: 'app-root',
template: ` <app-nx-welcome></app-nx-welcome> `,
styles: [],
})
export class AppComponent {
title = 'testing-forms';
}