12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
import appDispatcher from '../dispatcher';
|
|
import cons from '../state/cons';
|
|
|
|
function toggleMarkdown() {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.settings.TOGGLE_MARKDOWN,
|
|
});
|
|
}
|
|
|
|
export {
|
|
toggleMarkdown,
|
|
};
|