From ddb8cdbd73ded324d4c214dcd10b77c0b0649a72 Mon Sep 17 00:00:00 2001 From: Pratik Bhattacharya Date: Mon, 4 Jul 2022 12:59:36 +0530 Subject: [PATCH] fix: corrected documentation links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c69ffb..b998c83 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ A concept of `Global Store` is introduced which is a virtual amalgamation of mul Each Micro Frontend would have the capability to have its own `Redux Store`. Each app would create and register their `Redux Store` with the `Global Store`. The `Global Store` then uses these individual stores to project a Global State which is a combination of the state from all the other Stores. All the Micro Frontends would have access to the Global Store and would be able to see the state from the other Micro Frontends but won't be able to modify them. Actions dispatched by an app remains confined within the store registered by the app and is not dispatched to the other stores, thereby providing componentization and isolation. ### Read more -- [State Management Basics](https://www.devcompost.com/post/state-management-for-front-end-applications-part-i-what-and-why) +- [State Management Basics](https://www.codezap.dev/post/state-management-for-front-end-applications-part-i-what-and-why) -- [State Management in Micro Frontends](https://www.devcompost.com/post/state-management-ii-world-of-micro-frontends) +- [State Management in Micro Frontends](https://www.codezap.dev/post/state-management-ii-world-of-micro-frontends) ### Global Actions