mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
17 lines
325 B
TypeScript
17 lines
325 B
TypeScript
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 = {};
|