我有这样的源代码:
// createStore.js
export default (initialState = {}) => {
const store = ...;
return store;
}
另一个文件将通过以下方式调用:
import createStore from './store/createStore';
const initialState = window.__INITIAL_STATE__;
const store = createStore(initialState);
我的问题是:我希望createStore函数可以返回真实值,例如
store
和customHistory
,我该怎么做。谢谢
最佳答案
返回一个对象。
return {
store: {...},
customHistory: {...}
}
关于javascript - react 模块:接受参数并导出多个值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43692704/