From 062b6c192d52c1b16bb2e74f57c25ac970688f85 Mon Sep 17 00:00:00 2001 From: Fosty Fost Date: Mon, 6 Dec 2021 13:23:10 +0300 Subject: [PATCH] [Docs] Add Redux Eggs to `CodeSplitting.md` --- docs/usage/CodeSplitting.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/usage/CodeSplitting.md b/docs/usage/CodeSplitting.md index 0466b887b6..2c0d6a0104 100644 --- a/docs/usage/CodeSplitting.md +++ b/docs/usage/CodeSplitting.md @@ -160,4 +160,6 @@ There are a few good libraries out there that can help you add the above functio - [`redux-dynamic-modules`](https://github.com/Microsoft/redux-dynamic-modules): This library introduces the concept of a 'Redux Module', which is a bundle of Redux artifacts (reducers, middleware) that should be dynamically loaded. It also exposes a React higher-order component to load 'modules' when areas of the application come online. Additionally, it has integrations with libraries like `redux-thunk` and `redux-saga` which also help dynamically load their artifacts (thunks, sagas). +- [Redux Eggs](https://github.com/fostyfost/redux-eggs): + It is a monorepository that contains packages that allow you to easily split your Redux store into separate parts (`eggs`), and then dynamically add and remove them when you need it. - [Redux Ecosystem Links: Reducers - Dynamic Reducer Injection](https://github.com/markerikson/redux-ecosystem-links/blob/master/reducers.md#dynamic-reducer-injection)