codevise/pageflow

View on GitHub
entry_types/paged/packages/pageflow-paged-react/src/backgroundMedia/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
export const MUTE = 'BACKGROUND_MEDIA_MUTE';

export const UNMUTE = 'BACKGROUND_MEDIA_UNMUTE';

export function mute() {
  return {
    type: MUTE
  };
}

export function unmute() {
  return {
    type: UNMUTE
  };
}