mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
import { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import DeviceUserError from "./DeviceUserError";
|
|
|
|
const meta: Meta<typeof DeviceUserError> = {
|
|
title: "Components/Error messages/Device user error",
|
|
component: DeviceUserError,
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof DeviceUserError>;
|
|
|
|
export const Basic: Story = {};
|