angular-covid/src/app/app.module.ts
ExostFlash 5fa2c45e4a finish
2025-03-07 16:25:38 +01:00

34 lines
993 B
TypeScript

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NavBarComponent } from './nav-bar/nav-bar.component';
import { HomeComponent } from './home/home.component';
import { FooterComponent } from './footer/footer.component';
import { SymptomeComponent } from './symptome/symptome.component';
import { ContactComponent } from './contact/contact.component';
import { BlogComponent } from './blog/blog.component';
@NgModule({
declarations: [
AppComponent,
NavBarComponent,
HomeComponent,
FooterComponent,
SymptomeComponent,
ContactComponent,
BlogComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
ReactiveFormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }