mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-18 13:05:50 +00:00
e8a403e342
* Following up on the work from Idf90ee2a0f1c1d08a31cf50099c0bebc7b67e619, this commit renames the storybook files/storybook names to their respective component name. e.g. personalNavigation.stories.js => PersonalMenu.stories.js Bug: T243281 Change-Id: I68054663c5a597f90a826b6f75bf399382dca609
13 lines
451 B
JavaScript
13 lines
451 B
JavaScript
import mustache from 'mustache';
|
|
import { namespaceTabsData, pageActionsData, vectorTabsTemplate } from './VectorTabs.stories.data';
|
|
import '../resources/skins.vector.styles/VectorTabs.less';
|
|
import '../.storybook/common.less';
|
|
|
|
export default {
|
|
title: 'Tabs'
|
|
};
|
|
|
|
export const pageActionTabs = () => mustache.render( vectorTabsTemplate, pageActionsData );
|
|
|
|
export const namespaceTabs = () => mustache.render( vectorTabsTemplate, namespaceTabsData );
|