13 lines
475 B
TypeScript
13 lines
475 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { AppComponent } from './app.component';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [BrowserModule, CommonModule, HttpClientModule, FormsModule],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule {}
|