UNPKG

phenomic

Version:

Modern website generator based on the React and Webpack ecosystem.

12 lines (9 loc) 367 B
import { combineReducers } from "redux" import createStore from "phenomic/lib/redux/createStore" // eslint-disable-next-line import/no-namespace import * as phenomicReducers from "phenomic/lib/redux/modules" const store = createStore( combineReducers(phenomicReducers), { ...(typeof window !== "undefined") && window.__INITIAL_STATE__ }, ) export default store