summaryrefslogtreecommitdiff
path: root/frontend/src/actions/modals/simulations.js
blob: 0ef1cbaac0f408de393f4e7c9df206b1fdb813d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const OPEN_NEW_SIMULATION_MODAL = 'OPEN_NEW_SIMULATION_MODAL'
export const CLOSE_NEW_SIMULATION_MODAL = 'CLOSE_SIMULATION_MODAL'

export function openNewSimulationModal() {
    return {
        type: OPEN_NEW_SIMULATION_MODAL,
    }
}

export function closeNewSimulationModal() {
    return {
        type: CLOSE_NEW_SIMULATION_MODAL,
    }
}