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;