fleet/frontend/components/BackLink/BackLink.stories.tsx
2023-05-03 17:51:33 +01:00

17 lines
313 B
TypeScript

import { Meta, StoryObj } from "@storybook/react";
import BackLink from "./BackLink";
const meta: Meta<typeof BackLink> = {
title: "Components/BackLink",
component: BackLink,
args: {
text: "Back",
},
};
export default meta;
type Story = StoryObj<typeof BackLink>;
export const Basic: Story = {};