mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 21:03:03 -05:00
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
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';
|
|
}
|