angular init
This commit is contained in:
20
src/app/app-module.ts
Normal file
20
src/app/app-module.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { NgModule, provideBrowserGlobalErrorListeners } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
|
||||
import { AppRoutingModule } from './app-routing-module';
|
||||
import { App } from './app';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
App
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule
|
||||
],
|
||||
providers: [
|
||||
provideBrowserGlobalErrorListeners()
|
||||
],
|
||||
bootstrap: [App]
|
||||
})
|
||||
export class AppModule { }
|
||||
Reference in New Issue
Block a user