Files: ca718f616a051e93adeb22faa3fc06646f667973 / graph / actions.js
371 bytesRaw
1 | const { Action } = require('inux') |
2 | |
3 | const SET = Symbol('set') |
4 | const SET_FOCUS = Symbol('setFocus') |
5 | const FETCH = Symbol('fetch') |
6 | const FOCUS = Symbol('focus') |
7 | |
8 | const set = Action(SET) |
9 | const setFocus = Action(SET_FOCUS) |
10 | const fetch = Action(FETCH) |
11 | const focus = Action(FOCUS) |
12 | |
13 | module.exports = { |
14 | SET, |
15 | SET_FOCUS, |
16 | FETCH, |
17 | FOCUS, |
18 | set, |
19 | setFocus, |
20 | fetch, |
21 | focus |
22 | } |
23 |
Built with git-ssb-web