mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 05:13:02 -05:00
feat(challenges): add project canvas for testing
This commit is contained in:
13
apps/testing-forms/src/app/app.component.ts
Normal file
13
apps/testing-forms/src/app/app.component.ts
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user