From a060fbc25d88f5f623670f0ae8860b70db9bfdfb Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Sat, 4 Apr 2015 08:19:50 -0600 Subject: [PATCH] [fixed] Re-add missing constants to public API This was missed during the transition to ES6. Fixes #478 --- src/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index f07cccb791..b7e54269fb 100644 --- a/src/index.js +++ b/src/index.js @@ -47,6 +47,7 @@ import Table from './Table'; import TabPane from './TabPane'; import Tooltip from './Tooltip'; import Well from './Well'; +import constants from './constants'; export default { Accordion, @@ -97,5 +98,6 @@ export default { Table, TabPane, Tooltip, - Well + Well, + constants };