summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-theme-default/src/Toolbar.js
blob: b3fd059b8b39fe02c83831b81fdf61f9711b1386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const React = require('react');
const GitBook = require('gitbook-core');

const Toolbar = React.createClass({
    render() {
        return (
            <div className="Toolbar book-toolbar">
                <GitBook.InjectedComponentSet matching={{ role: 'toolbar:buttons:left' }} />
                <GitBook.InjectedComponentSet matching={{ role: 'toolbar:buttons:right' }} />
            </div>
        );
    }
});

module.exports = Toolbar;