Vector-Local/stories/Footer.stories.js
jdlrobson edb8872c95 Fix storybook instance display of footer and personal menu
* The classes provided on the personal menu are incorrect. Rectify these
by creating a menu helper
* Register the footer template partials

Change-Id: I4b73be54c073f0dd350c107b18f10456c9ee1b17
2020-10-08 16:08:43 -07:00

16 lines
382 B
JavaScript

import mustache from 'mustache';
import { FOOTER_TEMPLATE_DATA, FOOTER_TEMPLATE_PARTIALS,
footerTemplate } from './Footer.stories.data';
import '../resources/skins.vector.styles/Footer.less';
import '../.storybook/common.less';
export default {
title: 'Footer'
};
export const footer = () => mustache.render(
footerTemplate,
FOOTER_TEMPLATE_DATA,
FOOTER_TEMPLATE_PARTIALS
);