/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import { html } from "../vendor/lit.all.mjs"; // eslint-disable-next-line import/no-unassigned-import import "./moz-page-nav.mjs"; export default { title: "UI Widgets/Page Nav", component: "moz-page-nav", parameters: { status: "in-development", actions: { handles: ["change-view"], }, fluent: ` moz-page-nav-button-one = View 1 .title = View 1 moz-page-nav-button-two = View 2 .title = View 2 moz-page-nav-button-three = View 3 .title = View 3 moz-page-link-one = Support Page .title = Support Page moz-page-nav-heading = .heading = Heading `, }, }; const Template = () => html`
`; export const Default = Template.bind({}); Default.args = {};