From e6b8101f1c5a8052b14725ebbc2e5abbc4c869b0 Mon Sep 17 00:00:00 2001 From: "Erkelens, Jan Paul" Date: Wed, 25 Oct 2017 12:33:33 -0400 Subject: [PATCH] Exports Option Component --- src/index.js | 5 ++++- src/index.umd.js | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index a4bdbe2149..b338394223 100644 --- a/src/index.js +++ b/src/index.js @@ -3,16 +3,19 @@ import Async from './Async'; import AsyncCreatable from './AsyncCreatable'; import Creatable from './Creatable'; import Value from './Value'; +import Option from './Option'; Select.Async = Async; Select.AsyncCreatable = AsyncCreatable; Select.Creatable = Creatable; Select.Value = Value; +Select.Option = Option; export default Select; export { Async, AsyncCreatable, Creatable, - Value + Value, + Option }; diff --git a/src/index.umd.js b/src/index.umd.js index 980c7222ab..430aadc77c 100644 --- a/src/index.umd.js +++ b/src/index.umd.js @@ -8,10 +8,12 @@ import Async from './Async'; import AsyncCreatable from './AsyncCreatable'; import Creatable from './Creatable'; import Value from './Value'; +import Option from './Option'; Select.Async = Async; Select.AsyncCreatable = AsyncCreatable; Select.Creatable = Creatable; Select.Value = Value; +Select.Option = Option; export default Select;