mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-25 03:42:30 +00:00
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
const GitBook = require('gitbook-core');
|
|
const ShareButton = require('./Button');
|
|
|
|
module.exports = GitBook.createPlugin((dispatch, state) => {
|
|
dispatch(GitBook.registerComponent(ShareButton, { role: 'Toolbar:ActionButton' }));
|
|
});
|