/* 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 "lit.all.mjs"; // eslint-disable-next-line import/no-unassigned-import import "browser/components/firefoxview/fxview-category-navigation.mjs"; export default { title: "Domain-specific UI Widgets/Firefox View/Category Navigation", component: "fxview-category-navigation", parameters: { status: "in-development", actions: { handles: ["change-category"], }, fluent: ` fxview-category-button-one = Category 1 .title = Category 1 fxview-category-button-two = Category 2 .title = Category 2 fxview-category-button-three = Category 3 .title = Category 3 fxview-category-footer-button = Settings .title = Settings `, }, }; const Template = () => html`

Header

`; export const Default = Template.bind({}); Default.args = {};