Vector-Local/stories/StickyHeader.stories.js
jdlrobson 8657171471 Build the sticky header skeleton
The sticky header is currently disabled unconditionally
and nothing is wired up, with placeholders for data and
functionality which will be added in future.

Bug: T289716
Change-Id: I16223ce849267e718aad22b8a24b2327332ac8b7
2021-09-01 12:32:31 -07:00

14 lines
350 B
JavaScript

import mustache from 'mustache';
import '../resources/skins.vector.styles/components/StickyHeader.less';
import { template, data,
STICKY_HEADER_TEMPLATE_PARTIALS } from './StickyHeader.stories.data';
export default {
title: 'StickyHeader'
};
export const stickyHeader = () => mustache.render(
template, data, STICKY_HEADER_TEMPLATE_PARTIALS
);