mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-15 11:40:29 +03:00
added commands support
This commit is contained in:
parent
0feb56cb3e
commit
b552e2cda8
12 changed files with 682 additions and 34 deletions
12
src/client/action/settings.js
Normal file
12
src/client/action/settings.js
Normal 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,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue