mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
18 lines
325 B
TypeScript
18 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 = {};
|