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 b858a8f commit 2e397b2Copy full SHA for 2e397b2
README.md
@@ -31,15 +31,15 @@ import {bind} from 'angular2/di';
31
import {createStore, applyMiddleware} from 'redux';
32
import thunk from 'redux-thunk';
33
import {App} from './containers/App';
34
-import {provide} from 'ng2-redux';
+import {provider} from 'ng2-redux';
35
import {rootReducer} from './reducers';
36
37
const createStoreWithMiddleware = applyMiddleware(thunk)(createStore);
38
const store = createStoreWithMiddleware(rootReducer);
39
40
bootstrap(
41
App,
42
- [provide(store)]
+ [provider(store)]
43
);
44
```
45
@@ -73,7 +73,7 @@ class CounterApp {
73
74
## API
75
76
-### `provide(store)`
+### `provider(store)`
77
78
Provide the Redux store to `connect`.
79
0 commit comments