Skip to content

Commit

Permalink
fix(build): fix module export
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisboustead committed Mar 21, 2019
1 parent 8adee67 commit 90f9a3f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@ if (typeof window !== 'undefined') {
window.AsyncSelectPreview = AsyncSelectPreview;
}

export { AsyncSelectControl, AsyncSelectPreview };
const exportObject = {
AsyncSelectControl,
AsyncSelectPreview
};

export default exportObject

0 comments on commit 90f9a3f

Please sign in to comment.