diff options
Diffstat (limited to 'src/actions/modals')
| -rw-r--r-- | src/actions/modals/experiments.js | 14 | ||||
| -rw-r--r-- | src/actions/modals/simulations.js | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/src/actions/modals/experiments.js b/src/actions/modals/experiments.js new file mode 100644 index 00000000..43a53a3a --- /dev/null +++ b/src/actions/modals/experiments.js @@ -0,0 +1,14 @@ +export const OPEN_NEW_EXPERIMENT_MODAL = "OPEN_NEW_EXPERIMENT_MODAL"; +export const CLOSE_NEW_EXPERIMENT_MODAL = "CLOSE_EXPERIMENT_MODAL"; + +export function openNewExperimentModal() { + return { + type: OPEN_NEW_EXPERIMENT_MODAL + }; +} + +export function closeNewExperimentModal() { + return { + type: CLOSE_NEW_EXPERIMENT_MODAL + }; +} diff --git a/src/actions/modals/simulations.js b/src/actions/modals/simulations.js index 53d2c565..8281238d 100644 --- a/src/actions/modals/simulations.js +++ b/src/actions/modals/simulations.js @@ -1,5 +1,5 @@ export const OPEN_NEW_SIMULATION_MODAL = "OPEN_NEW_SIMULATION_MODAL"; -export const CLOSE_NEW_SIMULATION_MODAL = "CLOSE_SIMULATION_POPUP"; +export const CLOSE_NEW_SIMULATION_MODAL = "CLOSE_SIMULATION_MODAL"; export function openNewSimulationModal() { return { |
