blob: e33a470f60aed0d2ae1fb8751ce941e9dedbcea6 (
plain)
1
2
3
4
5
6
|
const GitBook = require('gitbook-core');
const ShareButton = require('./Button');
module.exports = GitBook.createPlugin((dispatch, state) => {
dispatch(GitBook.registerComponent(ShareButton, { role: 'Toolbar:ActionButton' }));
});
|