mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
e8a403e342
* Following up on the work from Idf90ee2a0f1c1d08a31cf50099c0bebc7b67e619, this commit renames the storybook files/storybook names to their respective component name. e.g. personalNavigation.stories.js => PersonalMenu.stories.js Bug: T243281 Change-Id: I68054663c5a597f90a826b6f75bf399382dca609
11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
import mustache from 'mustache';
|
|
import { FOOTER_TEMPLATE_DATA, 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 );
|