mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
19 lines
307 B
JavaScript
19 lines
307 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import alt from '../alt';
|
||
|
import CoaActions from '../actions/coa_actions';
|
||
|
|
||
|
|
||
|
class CoaStore {
|
||
|
constructor() {
|
||
|
this.coa = {};
|
||
|
this.bindActions(CoaActions);
|
||
|
}
|
||
|
|
||
|
onUpdateCoa(coa) {
|
||
|
this.coa = coa;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default alt.createStore(CoaStore, 'CoaStore');
|