mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import { defaultState } from "store/default_state";
|
|
|
|
export const chessBoard = (state = defaultState, action) => {
|
|
switch (action.type) {
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|