34 lines
993 B
TypeScript
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 { }
|