mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 03:19:10 -04:00
12 lines
251 B
JavaScript
Vendored
12 lines
251 B
JavaScript
Vendored
import * as types from "./FeatureTypes";
|
|
|
|
//Replace action name and update action types
|
|
export const actionRequest = () => ({
|
|
type: types.GET_DATA_REQUEST
|
|
});
|
|
|
|
export const actionReceive = payload => ({
|
|
type: types.GET_DATA_REQUEST,
|
|
payload
|
|
});
|