unicef/magicbox-maps

View on GitHub
react-app/src/actions/action-open-dock.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Open Dock
 *
 * @return {Object} payload
 */
export const openDock = () => {
  console.log('You want to open the dock');
  return {
    type: 'OPEN_DOCK',
    payload: false
  }
}