From 4a5a4be5982497b960a4589c8f753852c8995934 Mon Sep 17 00:00:00 2001 From: Rasheed Bustamam Date: Thu, 8 Nov 2018 01:43:28 -0800 Subject: [PATCH] Delete the redux/reducers guide (#20938) --- guide/english/redux/reducers/index.md | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 guide/english/redux/reducers/index.md diff --git a/guide/english/redux/reducers/index.md b/guide/english/redux/reducers/index.md deleted file mode 100644 index 083a58af83..0000000000 --- a/guide/english/redux/reducers/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Reducers ---- -### What are the reducers in Redux? - -Reducers are the pure functions that take an action and an previous state and return new state. Given the same input, the reducer should always return the same output.1 - -In a simple sense, reducers are gatekeepers of the redux central store. -- Components subscribe to the central data store which gets passed via props -- In order to make changes to the data store, components dispatch actions (along with optional payload) -- These actions gets passed onto reducers which then update the redux data store -### Sources - -1. http://redux.js.org/docs/basics/Reducers.html