Add keybindings form

This commit is contained in:
Shin'ya Ueoka 2017-11-22 22:38:34 +09:00
parent d33b37cdb9
commit 4e5ddc1d57
7 changed files with 268 additions and 45 deletions

View file

@ -3,6 +3,7 @@ import actions from 'settings/actions';
const defaultState = {
source: '',
json: '',
form: null,
value: {}
};
@ -12,6 +13,7 @@ export default function reducer(state = defaultState, action = {}) {
return {
source: action.source,
json: action.json,
form: action.form,
value: action.value,
};
default: