summaryrefslogtreecommitdiff
path: root/frontend/src/actions/modals/experiments.js
blob: 37f1922f0739f3f3cc547c7e7f81768792510d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
    }
}