mahaplatform/reframe

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

Summary

Maintainability
A
0 mins
Test Coverage
export const set = (items) => ({
  type: 'SET',
  items
})

export const toggle = (index) => ({
  type: 'TOGGLE',
  index
})

export const move = (from, to) => ({
  type: 'MOVE',
  from,
  to
})