summaryrefslogtreecommitdiff
path: root/frontend/src/actions/modals/experiments.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/actions/modals/experiments.js')
-rw-r--r--frontend/src/actions/modals/experiments.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/src/actions/modals/experiments.js b/frontend/src/actions/modals/experiments.js
new file mode 100644
index 00000000..df939fa5
--- /dev/null
+++ b/frontend/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
+ };
+}