From 85a26e1eff35f0bacc3ee4dafb14d62e52ec9d22 Mon Sep 17 00:00:00 2001 From: Qolzam Date: Fri, 7 Jul 2017 13:09:45 +0430 Subject: [PATCH] Add constants layer description --- docs/layers/constants.md | 3 +++ docs/layers/tests.md | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 docs/layers/constants.md create mode 100644 docs/layers/tests.md diff --git a/docs/layers/constants.md b/docs/layers/constants.md new file mode 100644 index 0000000..af31263 --- /dev/null +++ b/docs/layers/constants.md @@ -0,0 +1,3 @@ +# Constatnts + +This layer is responsible for setting constant virables, such as action type names for redux actions. Actions must have a type property that indicates the type of action being performed. Types should typically be defined as string constants. diff --git a/docs/layers/tests.md b/docs/layers/tests.md new file mode 100644 index 0000000..35b507e --- /dev/null +++ b/docs/layers/tests.md @@ -0,0 +1,3 @@ +# Tests + +This layer is responsible for configuring of redux store, such as setting reducers and midelwares. A [store](http://redux.js.org/docs/api/Store.html) holds the whole state tree of your application.