blob: 43a53a3aecbda9a612692fd0b495607139adf232 (
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
};
}
|