import type { Meta, StoryObj } from "@storybook/react"; import { AppBar } from "../src/components/AppBar/AppBar"; import { fn } from "@storybook/test"; import { NetworkIndicator } from "../src/components/NetworkIndicator/NetworkIndicator"; const meta = { title: "Components/AppBar", component: AppBar, parameters: { layout: "fullwidth", }, tags: ["autodocs"], argTypes: {}, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { onExpand: fn(), Right: , }, };