1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-23 01:39:36 +01:00
onion/js/stores/edition_list_store.js

15 lines
350 B
JavaScript

import alt from '../alt';
import EditionsListActions from '../actions/edition_list_actions';
class EditionListStore {
constructor() {
this.itemList = [];
this.bindActions(EditionsListActions);
}
onUpdateEditionList(itemList) {
this.itemList = itemList;
}
};
export default alt.createStore(EditionListStore);