import * as types from '../../types' export const showAddTileForm = () => dispatch => { dispatch({ type: types.graph.show_add_tile_form }) } export const hideAddTileForm = () => dispatch => { dispatch({ type: types.graph.hide_add_tile_form }) } export const updatePageTile = tile => dispatch => { dispatch({ type: types.graph.update_graph_tile, tile }) }