From f604406453f95c82c3e5e4294a51245661868bbe Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Thu, 14 Sep 2017 14:07:21 +0200 Subject: First attempt at experiment list UI --- src/actions/modals/experiments.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/actions/modals/experiments.js (limited to 'src/actions/modals/experiments.js') 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 + }; +} -- cgit v1.2.3