mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-23 11:46:41 +08:00
* feat: add theme berry * docs: add development notes * fix: fix blank page * chore: update implementation * fix: fix package.json * chore: update ui copy --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
import { createStore } from 'redux';
|
|
import reducer from './reducer';
|
|
|
|
// ==============================|| REDUX - MAIN STORE ||============================== //
|
|
|
|
const store = createStore(reducer);
|
|
const persister = 'Free';
|
|
|
|
export { store, persister };
|