Skip to content

Commit

Permalink
Build: Fix components exports after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed May 31, 2017
1 parent 62552a9 commit 48c092a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions blocks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ import './library';
// and then stored as objects in state, from which it is then rendered for editing.
export * from './api';
export { default as Editable } from './editable';
export { default as MediaUploadButton } from './media-upload-button';
2 changes: 2 additions & 0 deletions components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export { default as Dashicon } from './dashicon';
export { default as FormToggle } from './form-toggle';
export { default as IconButton } from './icon-button';
export { default as Panel } from './panel';
export { default as PanelHeader } from './panel/header';
export { default as PanelBody } from './panel/body';
export { default as Placeholder } from './placeholder';
export { default as Spinner } from './spinner';
export { default as Toolbar } from './toolbar';
Expand Down
6 changes: 5 additions & 1 deletion components/panel/body.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
* WordPress dependencies
*/
import { Component } from 'element';
import { IconButton } from 'components';

/**
* Internal dependencies
*/
import IconButton from '../icon-button';

class PanelBody extends Component {
constructor( props ) {
Expand Down

0 comments on commit 48c092a

Please sign in to comment.