blob: 3aa04474256b20eb4955ed03b5c7f5d4173af8e4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | import * as types from './actionTypes';
const openAction = (keyID, child, branch) => ({
  branch,
  type: `${branch}/${types.TOGGLE_TREE}`,
  keyID,
  child
});
export default openAction;
 |