AugurProject/augur-ui

View on GitHub
src/modules/universe/actions/update-universe.js

Summary

Maintainability
A
0 mins
Test Coverage
export const UPDATE_UNIVERSE = "UPDATE_UNIVERSE";

export const updateUniverse = updatedUniverse => ({
  type: UPDATE_UNIVERSE,
  data: { updatedUniverse }
});