diff --git a/README.md b/README.md
index bcd95b3..e427865 100644
--- a/README.md
+++ b/README.md
@@ -271,6 +271,8 @@ export default view(() => (
Name: {user.name} Name: {user.name} This is just plain textWrap ALL of your components with
+
+Every component that is using a store or part of a store inside its render must be wrapped with `view`. Sometimes store usage is not so explicit and easy to to miss.
```jsx
import { view, store } from '@risingstack/react-easy-state';
@@ -294,6 +296,20 @@ const Profile = view(({ user }) => view
- including class and function ones - even if they don't seem to directly use a store.