mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 13:23:02 -05:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
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 {}
|