mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 15:53:46 +00:00
892eb489e6
* VectorTabs.stories.js and Navigation.stories.js were updated to reflect this change. Bug: T243281 Change-Id: I96a3b9b2c9a8d799a5835de1f296bc1a779803ee
14 lines
509 B
JavaScript
14 lines
509 B
JavaScript
import mustache from 'mustache';
|
|
import { namespaceTabsData, pageActionsData, vectorTabsTemplate } from './VectorTabs.stories.data';
|
|
import '../resources/skins.vector.styles/VectorTabs.less';
|
|
import '../resources/skins.vector.styles/watchstar.less';
|
|
import '../.storybook/common.less';
|
|
|
|
export default {
|
|
title: 'Tabs'
|
|
};
|
|
|
|
export const pageActionTabs = () => mustache.render( vectorTabsTemplate, pageActionsData );
|
|
|
|
export const namespaceTabs = () => mustache.render( vectorTabsTemplate, namespaceTabsData );
|