9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
|
import * as types from './actionsTypes';
|
||
|
|
||
|
export function toggleCrashReport(value) {
|
||
|
return {
|
||
|
type: types.TOGGLE_CRASH_REPORT,
|
||
|
payload: value
|
||
|
};
|
||
|
}
|