mirror of
https://github.com/ascribe/onion.git
synced 2025-01-19 01:06:11 +01:00
11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
|
import alt from '../alt';
|
||
|
|
||
|
class ArtworkListActions {
|
||
|
constructor() {
|
||
|
this.generateActions(
|
||
|
'updateArtworks'
|
||
|
);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default alt.createAction(ArtworkListActions);
|