summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-sharing/src/Button.js
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-09-28 18:14:35 +0200
committerSamy Pesse <samypesse@gmail.com>2016-09-28 18:14:35 +0200
commit287c80b2e116572669f2a7073731ba7350e3619a (patch)
tree1572bab423b927e16bca4d56020aeec6442fe1a9 /packages/gitbook-plugin-sharing/src/Button.js
parent26fc021b900f6b28a180fa8360313b3193e6bf5e (diff)
downloadgitbook-287c80b2e116572669f2a7073731ba7350e3619a.zip
gitbook-287c80b2e116572669f2a7073731ba7350e3619a.tar.gz
gitbook-287c80b2e116572669f2a7073731ba7350e3619a.tar.bz2
Start search plugin
Diffstat (limited to 'packages/gitbook-plugin-sharing/src/Button.js')
-rw-r--r--packages/gitbook-plugin-sharing/src/Button.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/gitbook-plugin-sharing/src/Button.js b/packages/gitbook-plugin-sharing/src/Button.js
deleted file mode 100644
index 0cfce7c..0000000
--- a/packages/gitbook-plugin-sharing/src/Button.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const React = require('react');
-const GitBook = require('gitbook-core');
-
-const ShareButton = React.createClass({
- render() {
- return (
- <button>Share</button>
- );
- }
-});
-
-function mapStateToProps(state) {
-
-}
-
-
-module.exports = GitBook.connect(ShareButton, mapStateToProps);