mirror of
https://github.com/fleetdm/fleet
synced 2026-04-22 14:07:19 +00:00
18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
|
|
import { Meta, StoryObj } from "@storybook/react";
|
||
|
|
|
||
|
|
import InputFieldHiddenContent from ".";
|
||
|
|
|
||
|
|
const meta: Meta<typeof InputFieldHiddenContent> = {
|
||
|
|
component: InputFieldHiddenContent,
|
||
|
|
title: "Components/FormFields/InputFieldHiddenContent",
|
||
|
|
args: {
|
||
|
|
value: "test value",
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default meta;
|
||
|
|
|
||
|
|
type Story = StoryObj<typeof InputFieldHiddenContent>;
|
||
|
|
|
||
|
|
export const Default: Story = {};
|