import { defaultState } from "store/default_state"; export const chessBoard = (state = defaultState, action) => { switch (action.type) { default: return state; } }