30 lines
868 B
TypeScript
30 lines
868 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 { AboutComponent } from './about/about.component';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { ContactsComponent } from './contacts/contacts.component';
|
|
import { HomeComponent } from './home/home.component';
|
|
import { NavBarComponent } from './nav-bar/nav-bar.component';
|
|
import { AccountComponent } from './account/account.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
AboutComponent,
|
|
ContactsComponent,
|
|
HomeComponent,
|
|
NavBarComponent,
|
|
AccountComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
FormsModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|