This commit is contained in:
Thomas Nordquist
2019-04-04 19:51:44 +02:00
parent c20c075bcf
commit 09dcce97b7
55 changed files with 775 additions and 1415 deletions

View File

@@ -26,9 +26,9 @@ const store = createStore(
composeEnhancers(
applyMiddleware(
reduxThunk,
batchDispatchMiddleware,
),
),
batchDispatchMiddleware
)
)
)
function createTheme(type: 'light' | 'dark') {
@@ -77,5 +77,5 @@ ReactDOM.render(
<Provider store={store}>
<Application />
</Provider>,
document.getElementById('app'),
document.getElementById('app')
)