Skip to content

Commit 60cf28d

Browse files
DerekLiangEvan Schultz
authored andcommitted
sample project missing DevToolsExtension in providers list (#243)
🎆 thanks
1 parent 4a7d3d8 commit 60cf28d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/counter/app/app.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NgModule } from '@angular/core';
22
import { CommonModule } from '@angular/common';
33
import { BrowserModule } from '@angular/platform-browser';
4-
import { NgReduxModule } from 'ng2-redux';
4+
import {NgReduxModule, DevToolsExtension} from 'ng2-redux';
55
import { CounterActions } from '../actions/counter.actions';
66
import { SearchActions } from '../actions/search.actions';
77
import { App } from './app.component';
@@ -25,6 +25,7 @@ import { Search } from '../components/search.component';
2525
providers: [
2626
CounterActions,
2727
SearchActions,
28+
DevToolsExtension,
2829
]
2930
})
3031
export class AppModule {}

0 commit comments

Comments
 (0)