Skip to content

Instantly share code, notes, and snippets.

@nomanHasan
Last active October 12, 2017 09:01
Show Gist options
  • Save nomanHasan/558642086cca84a2939b39bbb0901b69 to your computer and use it in GitHub Desktop.
Save nomanHasan/558642086cca84a2939b39bbb0901b69 to your computer and use it in GitHub Desktop.
#todoapp-angular-ngrx
import { TodoListComponent } from './components/todo/todo-list/todo-list.component';
import { EffectsModule } from '@ngrx/effects';
import { TodoListItemComponent } from './components/todo/todo-list-item/todo-list-item.component';
import * as TodoReducer from './store/todo/todo.reducer'
// ........................
imports: [
BrowserModule,
HttpClientModule,
FormsModule,
NgbModule.forRoot(),
StoreModule.forRoot({todos: TodoReducer.TodoReducer}),
EffectsModule.forRoot([TodoEffects])
]
//.......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment