Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Toolbar: move all subcomponents under the same folder #46951

Merged
merged 14 commits into from
Jan 9, 2023
Next Next commit
Move Toolbar files inside toolbar subfolder
  • Loading branch information
ciampo committed Jan 9, 2023
commit d7985a453029b8636a63caf5faa32af6996dd32e
4 changes: 2 additions & 2 deletions packages/components/src/toolbar/stories/index.js
Original file line number Diff line number Diff line change
@@ -17,15 +17,15 @@ import {
/**
* Internal dependencies
*/
import Toolbar from '../';
import Toolbar from '..';
import {
SVG,
Path,
ToolbarButton,
ToolbarGroup,
ToolbarItem,
DropdownMenu,
} from '../../';
} from '../../..';

export default { title: 'Components/Toolbar', component: Toolbar };

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ import deprecated from '@wordpress/deprecated';
/**
* Internal dependencies
*/
import ToolbarGroup from '../toolbar-group';
import ToolbarGroup from '../../toolbar-group';
import ToolbarContainer from './toolbar-container';

/**