-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.module.ts
33 lines (32 loc) · 1.15 KB
/
app.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { EffectsModule } from '@ngrx/effects';
import { StoreModule } from '@ngrx/store';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app.routing.module';
import { BookDetailComponent } from './components/book-detail/book-detail.component';
import { BookListEntryComponent } from './components/book-list/book-list-entry/book-list-entry.component';
import { BookListComponent } from './components/book-list/book-list.component';
import { NewBookComponent } from './components/new-book/new-book.component';
import { BookModule } from './shared/books/book.module';
@NgModule({
declarations: [
AppComponent,
BookListComponent,
NewBookComponent,
BookListEntryComponent,
BookDetailComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
StoreModule.forRoot({}),
EffectsModule.forRoot([]),
BookModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }