Skip to content

Commit

Permalink
refactor(react): update wildcard exports (#5220)
Browse files Browse the repository at this point in the history
Co-authored-by: TJ Egan <[email protected]>
  • Loading branch information
joshblack and tw15egan authored Jan 31, 2020
1 parent 90900d2 commit 0000bb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/FileUploader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

export * from './FileUploader.Skeleton';
export * from './FileUploader';
export FileUploaderItem from './FileUploaderItem';
export FileUploaderDropContainer from './FileUploaderDropContainer';
export * from './FileUploader';
export default from './FileUploader';
3 changes: 2 additions & 1 deletion packages/react/src/components/ListBox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* LICENSE file in the root directory of this source tree.
*/

export * as PropTypes from './ListBoxPropTypes';

import ListBox from './ListBox';
import ListBoxField from './ListBoxField';
import ListBoxMenu from './ListBoxMenu';
Expand All @@ -19,4 +21,3 @@ ListBox.MenuItem = ListBoxMenuItem;
ListBox.Selection = ListBoxSelection;

export default ListBox;
export * as PropTypes from './ListBoxPropTypes';
2 changes: 1 addition & 1 deletion packages/react/src/components/Pagination/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
* LICENSE file in the root directory of this source tree.
*/

export default from './Pagination';
export * from './Pagination.Skeleton';
export default from './Pagination';

0 comments on commit 0000bb2

Please sign in to comment.