2020-01-09 22:11:00 +00:00
|
|
|
import mustache from 'mustache';
|
2020-02-28 22:17:31 +00:00
|
|
|
import { namespaceTabsData, pageActionsData, vectorTabsTemplate } from './VectorTabs.stories.data';
|
2020-02-28 20:06:33 +00:00
|
|
|
import '../resources/skins.vector.styles/VectorTabs.less';
|
2020-01-09 22:11:00 +00:00
|
|
|
import '../.storybook/common.less';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Tabs'
|
|
|
|
};
|
|
|
|
|
2020-02-17 19:49:43 +00:00
|
|
|
export const pageActionTabs = () => mustache.render( vectorTabsTemplate, pageActionsData );
|
2020-01-09 22:11:00 +00:00
|
|
|
|
2020-02-17 19:49:43 +00:00
|
|
|
export const namespaceTabs = () => mustache.render( vectorTabsTemplate, namespaceTabsData );
|