From ae765c7912a04f873babef4c7f9128de16cfdeed Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 23 Oct 2024 10:05:48 +0200 Subject: [PATCH] Remove Appbar story --- stories/AppBar.stories.tsx | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 stories/AppBar.stories.tsx 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: , - }, -};