diff --git a/src/content/6/en/part6a.md b/src/content/6/en/part6a.md
index 17197bfccd..8be68fcaff 100644
--- a/src/content/6/en/part6a.md
+++ b/src/content/6/en/part6a.md
@@ -967,7 +967,7 @@ export const toggleImportanceOf = (id) => { // highlight-line
export default noteReducer
```
-If the application has many components which need the store, the App component must pass store as props to all of those components.
+Previously, if the application had many components which needed the store, the App component had to pass store as props to all of those components (known as prop drilling). Now with the store Provider wrapping the App component, the store is directly accessible to all components within the App component without explicitly being passed as props.
The module now has multiple [export](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export) commands.