mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-12-08 01:34:32 +00:00
* Refactor Home component * Refactor Welcome * Refactor small components * Refactor Nav component * refactor Settings * Refactor Chat * Refactor New message notifications * Fix tests * Remove tooltip * Remove react-simple-dropdown * Change to last redux * Switch to redux hooks * Add github action
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
/* istanbul ignore file */
|
|
import { configureStore } from '@reduxjs/toolkit'
|
|
|
|
import reducers from '@/reducers';
|
|
|
|
|
|
export default function confStore(preloadedState) {
|
|
const store = configureStore({reducer:reducers, preloadedState })
|
|
return store;
|
|
}
|