Building Components and Services

This commit is contained in:
2026-03-10 21:37:28 +05:30
parent 65da7e778d
commit f9fa8f2bfc
31 changed files with 9111 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { Component, signal } from '@angular/core';
import { StudentComponent } from './student/student.component';
@Component({
selector: 'app-root',
imports: [StudentComponent],
templateUrl: './app.html',
styleUrl: './app.css'
})
export class App {
protected readonly title = signal('angular-component-service-demo');
}