diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-17 18:11:26 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-17 18:11:26 +0100 |
| commit | d165a0727e42349d935ab3ee287242f1e5029742 (patch) | |
| tree | b4fa68209127efdd4eb46c82eaef280535692611 /frontend/site/store.js | |
| parent | 92566ba17f5e921d5bff1f3fb4e4b0d92ca4fd39 (diff) | |
frontend. export/view button. interactivity sanity check
Diffstat (limited to 'frontend/site/store.js')
| -rw-r--r-- | frontend/site/store.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/site/store.js b/frontend/site/store.js index 6511613..5cb1a1b 100644 --- a/frontend/site/store.js +++ b/frontend/site/store.js @@ -4,6 +4,7 @@ import { createBrowserHistory } from 'history' import thunk from 'redux-thunk' import siteReducer from 'site/site/site.reducer' +import AudioPlayer from 'site/audio/audio.player' const createRootReducer = history => ( combineReducers({ @@ -13,7 +14,7 @@ const createRootReducer = history => ( }) ) -const configureStore = (initialState = {}, history) => { +const configureStore = (initialState = { audio: audioPlayer }, history) => { const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose const store = createStore( |
