created angular project

This commit is contained in:
2023-07-19 15:35:12 +05:30
commit ffa7525ece
22 changed files with 12409 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }