summaryrefslogtreecommitdiff
path: root/frontend/src/index.js
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 18:34:14 +0100
committerVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 19:28:49 +0100
commit0c9e9480471848a4b8670da22b609535cb153ff3 (patch)
treee59256cb6e8ec6b1041db8ed9902f89e4c39d2e2 /frontend/src/index.js
parentAdd notification for updated game to /topics/games (diff)
downloadseven-wonders-0c9e9480471848a4b8670da22b609535cb153ff3.tar.gz
seven-wonders-0c9e9480471848a4b8670da22b609535cb153ff3.tar.bz2
seven-wonders-0c9e9480471848a4b8670da22b609535cb153ff3.zip
Made redux store fully immutable
Diffstat (limited to 'frontend/src/index.js')
-rw-r--r--frontend/src/index.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/index.js b/frontend/src/index.js
index 1959b14a..08f257f3 100644
--- a/frontend/src/index.js
+++ b/frontend/src/index.js
@@ -4,6 +4,7 @@ import React from 'react'
import ReactDOM from 'react-dom'
import { Router } from 'react-router'
import { Provider } from 'react-redux'
+
import configureStore from './store'
import { routes } from './routes'
bgstack15