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.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/packages/gitbook-core/src/index.js b/packages/gitbook-core/src/index.js
index cb107c8..c83fc3a 100644
--- a/packages/gitbook-core/src/index.js
+++ b/packages/gitbook-core/src/index.js
@@ -17,25 +17,26 @@ const { registerComponent } = require('./actions/components');
const ACTIONS = require('./actions/TYPES');
const Shapes = require('./shapes');
-const connect = require('./connect');
-const createPlugin = require('./createPlugin');
-const createReducer = require('./createReducer');
-const createStore = require('./createStore');
-const composeReducer = require('./composeReducer');
-const bootstrap = require('./bootstrap');
-const renderWithStore = require('./renderWithStore');
+const connect = require('./lib/connect');
+const createPlugin = require('./lib/createPlugin');
+const createReducer = require('./lib/createReducer');
+const createContext = require('./lib/createContext');
+const composeReducer = require('./lib/composeReducer');
+const bootstrap = require('./lib/bootstrap');
+const renderWithContext = require('./lib/renderWithContext');
module.exports = {
ACTIONS,
bootstrap,
- renderWithStore,
+ renderWithContext,
connect,
createPlugin,
createReducer,
- createStore,
+ createContext,
composeReducer,
registerComponent,
// React Components
+ IntlProvider,
InjectedComponent,
InjectedComponentSet,
HTMLContent,