UNPKG

@postnord/web-components

Version:

PostNord Web Components

42 lines (41 loc) 1.06 kB
/*! * Built with Stencil * By PostNord. */ import { createDocumentation, createComponent } from "../../../globals/documentation/story"; import docs from "./pn-footer-docs.json"; const { argTypes, textContent } = createDocumentation(docs); import { fi, FI } from "../../../globals/helpers"; /** The pn-tile component is used for navigation, but can display a title, text and/or image in an accessible way. */ const meta = { title: 'Components/Navigation/Footer', parameters: { docs: { description: { story: textContent, }, }, }, args: { market: '', language: '', }, argTypes, }; export default meta; export const PnFooter = { name: 'pn-footer', render: args => createComponent('pn-footer', args), }; /** * Footer with fi/fi */ export const PnFooterFinland = { name: 'pn-footer (fi/fi)', render: args => createComponent('pn-footer', args), args: { market: FI, language: fi, }, }; //# sourceMappingURL=pn-footer.stories.js.map