Folder structure #398

Merged
bones7242 merged 76 commits from folder-structure into master 2018-03-20 00:01:08 +01:00
Showing only changes of commit 402724e513 - Show all commits

View file

@ -21,7 +21,6 @@ const sagaMiddleware = createSagaMiddleware();
const middleware = applyMiddleware(sagaMiddleware);
const reduxMiddleware = window.__REDUX_DEVTOOLS_EXTENSION__ ? compose(middleware, window.__REDUX_DEVTOOLS_EXTENSION__()) : middleware;
const SpeechClient = () => {
// create teh store
let store;
if (preloadedState) {
@ -44,6 +43,3 @@ const SpeechClient = () => {
</Provider>,
document.getElementById('react-app')
);
};
module.exports = SpeechClient;