summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-theme-default/src/Sidebar.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/gitbook-plugin-theme-default/src/Sidebar.js')
-rw-r--r--packages/gitbook-plugin-theme-default/src/Sidebar.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/gitbook-plugin-theme-default/src/Sidebar.js b/packages/gitbook-plugin-theme-default/src/Sidebar.js
new file mode 100644
index 0000000..2ff8854
--- /dev/null
+++ b/packages/gitbook-plugin-theme-default/src/Sidebar.js
@@ -0,0 +1,13 @@
+const React = require('react');
+
+const Sidebar = React.createClass({
+ render() {
+ return (
+ <div className="Sidebar book-summary">
+
+ </div>
+ );
+ }
+});
+
+module.exports = Sidebar;