diff --git a/stories/AppBar.stories.tsx b/stories/AppBar.stories.tsx deleted file mode 100644 index e1b5777..0000000 --- a/stories/AppBar.stories.tsx +++ /dev/null @@ -1,24 +0,0 @@ -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: , - }, -};