diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-06-02 20:25:23 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-06-02 20:25:23 +0200 |
| commit | 04f7efe6c05153cbd1613e7b0c78b3b6478ae39b (patch) | |
| tree | e181c4415a271a60e505fc536219eb5e72b6f6fb /frontend/views/graph/graph.actions.js | |
| parent | f6d7fcbb50ef57f1f7d7ca8cacd711ffd576e600 (diff) | |
new page form
Diffstat (limited to 'frontend/views/graph/graph.actions.js')
| -rw-r--r-- | frontend/views/graph/graph.actions.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/views/graph/graph.actions.js b/frontend/views/graph/graph.actions.js new file mode 100644 index 0000000..2e6ca54 --- /dev/null +++ b/frontend/views/graph/graph.actions.js @@ -0,0 +1,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 }) +} |
