diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-09-05 11:04:36 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-09-05 11:04:36 +0200 |
commit | b170b4d197822f3949b63df69e063d07cbb8e5c9 (patch) | |
tree | 556d9919e09eb12bea462a3d3a7801a1cea0611e /packages/gitbook-core/src/InjectedComponent.js | |
parent | a14ca3e268e95a7eab59fb205b41da7331d57631 (diff) | |
download | gitbook-b170b4d197822f3949b63df69e063d07cbb8e5c9.zip gitbook-b170b4d197822f3949b63df69e063d07cbb8e5c9.tar.gz gitbook-b170b4d197822f3949b63df69e063d07cbb8e5c9.tar.bz2 |
Start basis of gitbook-core
Diffstat (limited to 'packages/gitbook-core/src/InjectedComponent.js')
-rw-r--r-- | packages/gitbook-core/src/InjectedComponent.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/gitbook-core/src/InjectedComponent.js b/packages/gitbook-core/src/InjectedComponent.js new file mode 100644 index 0000000..1a2f1df --- /dev/null +++ b/packages/gitbook-core/src/InjectedComponent.js @@ -0,0 +1,9 @@ +const React = require('react'); + +const InjectedComponent = React.createClass({ + render() { + + } +}); + +module.exports = InjectedComponent; |