mirror of
https://github.com/wassname/talk.git
synced 2026-07-11 13:08:34 +08:00
6 lines
302 B
JavaScript
6 lines
302 B
JavaScript
import * as actions from '../constants/asset';
|
|
|
|
export const fetchAssetRequest = () => ({type: actions.FETCH_ASSET_REQUEST});
|
|
export const fetchAssetSuccess = asset => ({type: actions.FETCH_ASSET_SUCCESS, asset});
|
|
export const fetchAssetFailure = error => ({type: actions.FETCH_ASSET_FAILURE, error});
|