diff options
author | Johan Preynat <johan.preynat@gmail.com> | 2016-10-31 17:12:47 +0100 |
---|---|---|
committer | Johan Preynat <johan.preynat@gmail.com> | 2016-10-31 17:12:47 +0100 |
commit | ebf7a5cf506f10b52eaeef94484954b5e6b436ae (patch) | |
tree | 421d346e9c77323553ab9cc91b3a4722e89a8af7 /packages/gitbook-core | |
parent | 1d877db5f005bba7aada170b9fc0dd6ea7ad5ae3 (diff) | |
download | gitbook-ebf7a5cf506f10b52eaeef94484954b5e6b436ae.zip gitbook-ebf7a5cf506f10b52eaeef94484954b5e6b436ae.tar.gz gitbook-ebf7a5cf506f10b52eaeef94484954b5e6b436ae.tar.bz2 |
Export ReactCSSTransitionGroup from gitbook-core
Diffstat (limited to 'packages/gitbook-core')
-rw-r--r-- | packages/gitbook-core/package.json | 1 | ||||
-rw-r--r-- | packages/gitbook-core/src/index.js | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/packages/gitbook-core/package.json b/packages/gitbook-core/package.json index 7aea7fb..a5f787e 100644 --- a/packages/gitbook-core/package.json +++ b/packages/gitbook-core/package.json @@ -12,6 +12,7 @@ "immutable": "^3.8.1", "mousetrap": "1.6.0", "react": "^15.3.1", + "react-addons-css-transition-group": "^15.3.1", "react-dom": "^15.3.1", "react-helmet": "^3.1.0", "react-immutable-proptypes": "^2.1.0", diff --git a/packages/gitbook-core/src/index.js b/packages/gitbook-core/src/index.js index 7b74150..3f0120c 100644 --- a/packages/gitbook-core/src/index.js +++ b/packages/gitbook-core/src/index.js @@ -1,6 +1,7 @@ require('whatwg-fetch'); const React = require('react'); +const ReactCSSTransitionGroup = require('react-addons-css-transition-group'); const Immutable = require('immutable'); const Head = require('react-helmet'); const Promise = require('bluebird'); @@ -66,6 +67,7 @@ module.exports = { PropTypes, // Librairies React, + ReactCSSTransitionGroup, Immutable, Promise }; |