We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a7d3d8 commit 60cf28dCopy full SHA for 60cf28d
examples/counter/app/app.module.ts
@@ -1,7 +1,7 @@
1
import { NgModule } from '@angular/core';
2
import { CommonModule } from '@angular/common';
3
import { BrowserModule } from '@angular/platform-browser';
4
-import { NgReduxModule } from 'ng2-redux';
+import {NgReduxModule, DevToolsExtension} from 'ng2-redux';
5
import { CounterActions } from '../actions/counter.actions';
6
import { SearchActions } from '../actions/search.actions';
7
import { App } from './app.component';
@@ -25,6 +25,7 @@ import { Search } from '../components/search.component';
25
providers: [
26
CounterActions,
27
SearchActions,
28
+ DevToolsExtension,
29
]
30
})
31
export class AppModule {}
0 commit comments