summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-theme-default/src/actions/sidebar.js
blob: 52f84221d71ad6ea5c43d7bc02867d32ce57974c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const ActionTypes = require('./types');

/**
 * Toggle the sidebar
 * @return {Action}
 */
function toggle() {
    return { type: ActionTypes.TOGGLE_SIDEBAR };
}

module.exports = {
    toggle
};