1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/app/store/actions.js
2016-12-08 17:46:28 +01:00

18 lines
282 B
JavaScript

const SELECT_PIECE = "SELECT_PIECE";
const MOVE_PIECE = "MOVE_PIECE";
export const selectPiece = (coords) => {
return {
type: SELECT_PIECE,
coords: coords
};
}
export const movePiece = (from, to) => {
return {
type: MOVE_PIECE,
from: from,
to: to
};
}