redux-devtools/packages/redux-devtools-remote/examples/toggle-monitoring/actions/monitoring.js
2021-10-28 20:39:47 +00:00

22 lines
396 B
JavaScript

export const START_MONITORING = 'START_MONITORING';
export const STOP_MONITORING = 'STOP_MONITORING';
export const SEND_TO_MONITOR = 'SEND_TO_MONITOR';
export function startMonitoring() {
return {
type: START_MONITORING,
};
}
export function stopMonitoring() {
return {
type: STOP_MONITORING,
};
}
export function sendToMonitor() {
return {
type: SEND_TO_MONITOR,
};
}