mahaplatform/reframe

View on GitHub
src/containers/drawer/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
export const open = (component, location) => ({
  type: 'OPEN',
  component,
  location
})

export const close = () => ({
  type: 'CLOSE'
})

export const clear = () => ({
  type: 'CLEAR'
})