mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +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 = {};
|