mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
17 lines
298 B
JavaScript
17 lines
298 B
JavaScript
import alt from '../alt';
|
|
import PieceAction from '../actions/piece_actions';
|
|
|
|
|
|
class PieceStore {
|
|
constructor() {
|
|
this.piece = {};
|
|
this.bindActions(PieceAction);
|
|
}
|
|
|
|
onUpdatePiece(piece) {
|
|
this.piece = piece;
|
|
}
|
|
}
|
|
|
|
export default alt.createStore(PieceStore);
|