mirror of
https://github.com/fleetdm/fleet
synced 2026-04-28 00:47:22 +00:00
16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
|
|
import React from "react";
|
||
|
|
import { Meta, StoryObj } from "@storybook/react";
|
||
|
|
|
||
|
|
import DeviceUserError from "./DeviceUserError";
|
||
|
|
|
||
|
|
const meta: Meta<typeof DeviceUserError> = {
|
||
|
|
title: "Components/DeviceUserError",
|
||
|
|
component: DeviceUserError,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default meta;
|
||
|
|
|
||
|
|
type Story = StoryObj<typeof DeviceUserError>;
|
||
|
|
|
||
|
|
export const Basic: Story = {};
|