summaryrefslogtreecommitdiff
path: root/frontend/views/graph/graph.actions.js
blob: 2e6ca5454cf2729a1ea960f47502c19f3bc9b4a5 (plain)
1
2
3
4
5
6
7
8
9
import * as types from '../../types'

export const showAddPageForm = () => dispatch => {
  dispatch({ type: types.graph.show_add_page_form })
}

export const hideAddPageForm = () => dispatch => {
  dispatch({ type: types.graph.hide_add_page_form })
}