UNPKG

meme-magic

Version:

An A-Frame, React, Redux front-end with Sessions, Websockets, SQL, and Authentication built into the backend.

12 lines (10 loc) 303 B
import { SET_INITIALIZED } from '../../constants'; import initialState from '../../initialState'; export default (state = initialState, action) => { switch (action.type) { case SET_INITIALIZED: return state.merge({ isInitialized: true }); default: return state; } };