summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin/template/src/index.js
blob: 0fe8869d429c4fcc8a2d2be05611bf176bb44e32 (plain)
1
2
3
4
5
6
7
8
9
10
11
const GitBook = require('gitbook-core');

module.exports = GitBook.createPlugin({
    activate: (dispatch, getState) => {
        // Dispatch initialization actions
    },
    deactivate: (dispatch, getState) => {
        // Dispatch cleanup actions
    },
    reduce: (state, action) => state
});