added commands support

This commit is contained in:
unknown 2021-08-08 21:56:34 +05:30
parent 0feb56cb3e
commit b552e2cda8
12 changed files with 682 additions and 34 deletions

View file

@ -0,0 +1,12 @@
import appDispatcher from '../dispatcher';
import cons from '../state/cons';
function toggleMarkdown() {
appDispatcher.dispatch({
type: cons.actions.settings.TOGGLE_MARKDOWN,
});
}
export {
toggleMarkdown,
};