mahaplatform/reframe

View on GitHub
src/components/prompt/actions.js

Summary

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

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

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