feat(challenge): create 3 new challengesinit

This commit is contained in:
thomas
2022-12-16 11:25:03 +01:00
parent 3178ac95b7
commit cc1e2c147c
49 changed files with 3241 additions and 0 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 = 'rxjs-race-condition';
}