fleet/frontend/components/BackButton/BackButton.stories.tsx

18 lines
325 B
TypeScript
Raw Normal View History

2025-09-29 17:10:41 +00:00
import { Meta, StoryObj } from "@storybook/react";
import BackButton from "./BackButton";
const meta: Meta<typeof BackButton> = {
title: "Components/BackButton",
component: BackButton,
args: {
text: "Back",
},
};
export default meta;
type Story = StoryObj<typeof BackButton>;
export const Basic: Story = {};