// actions.js
export const addUser = ({ dispatch }, user) => {
  dispatch('ADD_USER', user)
}