mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-23 23:58:16 +00:00
* Fix redux store configuration * Setup i18n * Add welcome page french and english translation * Rename languages files * Add optimized translation * Add Ethereum network error message translation * Add top navbar translation * Add constants translation * Add move domain translation * Add translation to add domain * Add name lookup translation * Add display box translation * Add edit options translation * Add register sub domain translation * Add release domain translation * Add setup ens translation * Add update controller translation * Add test token translation * Add erc20 token translation * Add ens sub management translation * Add admin mode translation * Add terms translation
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
import { applyMiddleware, compose, createStore } from 'redux';
|
|
import rootReducer from '../reducers/rootReducer';
|
|
import thunk from 'redux-thunk';
|
|
|
|
const store = createStore(
|
|
rootReducer,
|
|
compose(
|
|
applyMiddleware(thunk),
|
|
window.devToolsExtension ? window.devToolsExtension() : f => f,
|
|
),
|
|
);
|
|
|
|
export default store;
|