import mustache from 'mustache'; import { htmluserlangattributes } from './utils'; import vectorTabsTemplate from '!!raw-loader!../includes/templates/VectorTabs.mustache'; import '../resources/skins.vector.styles/tabs.less'; import '../.storybook/common.less'; export default { title: 'Tabs' }; export const viewTabs = () => mustache.render( vectorTabsTemplate, { 'tabs-id': 'p-views', 'empty-portlet': '', 'label-id': 'p-views-label', 'msg-label': 'Views', 'html-userlangattributes': htmluserlangattributes, 'html-items': `
  • Read
  • View source
  • View history
  • ` } ); export const namespaceTabs = () => mustache.render( vectorTabsTemplate, { 'tabs-id': 'p-namespaces', 'empty-portlet': '', 'label-id': 'p-namespaces-label', 'msg-label': 'Namespaces', 'html-userlangattributes': htmluserlangattributes, 'html-items': `
  • Main page
  • Talk (3)
  • ` } );