mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
edb8872c95
* The classes provided on the personal menu are incorrect. Rectify these by creating a menu helper * Register the footer template partials Change-Id: I4b73be54c073f0dd350c107b18f10456c9ee1b17
16 lines
382 B
JavaScript
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
|
|
);
|