summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/gitbook-core/src/index.js')
-rw-r--r--packages/gitbook-core/src/index.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/gitbook-core/src/index.js b/packages/gitbook-core/src/index.js
index b4b2abd..46892e4 100644
--- a/packages/gitbook-core/src/index.js
+++ b/packages/gitbook-core/src/index.js
@@ -2,6 +2,7 @@ const Head = require('react-helmet');
const { Provider } = require('react-redux');
const { InjectedComponent, InjectedComponentSet } = require('./components/InjectedComponent');
+const { ImportLink, ImportScript, ImportCSS } = require('./components/Import');
const HTMLContent = require('./components/HTMLContent');
const { registerComponent } = require('./actions/components');
@@ -12,9 +13,13 @@ const connect = require('./connect');
const createPlugin = require('./createPlugin');
const createReducer = require('./createReducer');
const createStore = require('./createStore');
+const bootstrap = require('./bootstrap');
+const renderWithStore = require('./renderWithStore');
module.exports = {
ACTIONS,
+ bootstrap,
+ renderWithStore,
connect,
createPlugin,
createReducer,
@@ -26,6 +31,9 @@ module.exports = {
HTMLContent,
Head,
Provider,
+ ImportLink,
+ ImportScript,
+ ImportCSS,
// Utilities
Shapes
};