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 b5d12e1 commit 6a66161Copy full SHA for 6a66161
README.md
@@ -484,7 +484,7 @@ good stuff).
484
485
A good pattern for doing this might be to add a constructor to your container
486
which accepts `props` sorta like React components. Then create your own
487
-instance of your container and pass it into `<Provide inject>`.
+instance of your container and pass it into `<Provider inject>`.
488
489
```js
490
class CounterContainer extends Container {
@@ -506,8 +506,8 @@ let counter = new CounterContainer({
506
});
507
508
render(
509
- <Provide inject={[counter]}>
+ <Provider inject={[counter]}>
510
<Counter />
511
- </Provide>
+ </Provider>
512
);
513
```
0 commit comments