7 lines
213 B
JavaScript
7 lines
213 B
JavaScript
export const GET_MODE = '[mode] GET';
|
|
export const FETCH_MODE_SUCCESS = '[mode] Fetch mode SUCCESS';
|
|
export const FETCH_MODE_ERROR = '[mode] Fetch mode ERROR';
|
|
|
|
export const getMode = () => ({
|
|
type: GET_MODE
|
|
});
|