mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
51457a78e7
Rename template and CSS files to match updated naming conventions, replaces instances of "sidebar" with "main menu" Bug: T316570 Bug: T317437 Change-Id: Ib4050768f20b1734d356104f18aa539f657099d8
16 lines
395 B
JavaScript
16 lines
395 B
JavaScript
import mustache from 'mustache';
|
|
import { pageToolbarTemplate,
|
|
PAGE_TOOLBAR_TEMPLATE_DATA,
|
|
PAGE_TOOLBAR_PARTIALS } from './PageToolbar.stories.data';
|
|
import '../resources/skins.vector.styles/components/PageToolbar.less';
|
|
|
|
export default {
|
|
title: 'PageToolbar'
|
|
};
|
|
|
|
export const defaultState = () => mustache.render(
|
|
pageToolbarTemplate,
|
|
PAGE_TOOLBAR_TEMPLATE_DATA,
|
|
PAGE_TOOLBAR_PARTIALS
|
|
);
|