summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/viewer.reducer.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-07-22 16:53:44 +0200
committerJules Laplace <julescarbon@gmail.com>2020-07-22 16:53:44 +0200
commit74888b0fea12020da23ad0825d5d3e55aa6155c4 (patch)
treea60b473afd92f68df97eaa903edd657fba3e6856 /animism-align/frontend/app/views/viewer/viewer.reducer.js
parentef78bc6a084f92b4794e987b5832240d85b6479e (diff)
adding spot for the viewer
Diffstat (limited to 'animism-align/frontend/app/views/viewer/viewer.reducer.js')
-rw-r--r--animism-align/frontend/app/views/viewer/viewer.reducer.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/animism-align/frontend/app/views/viewer/viewer.reducer.js b/animism-align/frontend/app/views/viewer/viewer.reducer.js
new file mode 100644
index 0000000..039d16f
--- /dev/null
+++ b/animism-align/frontend/app/views/viewer/viewer.reducer.js
@@ -0,0 +1,14 @@
+import * as types from 'app/types'
+
+const initialState = {
+ options: {
+ }
+}
+
+export default function viewerReducer(state = initialState, action) {
+ // console.log(action.type, action)
+ switch (action.type) {
+ default:
+ return state
+ }
+}