fleet/frontend/components/PremiumFeatureIconWithTooltip/PremiumFeatureIconWithToooltip.stories.tsx

15 lines
406 B
TypeScript
Raw Normal View History

2023-05-03 16:51:33 +00:00
import { Meta, StoryObj } from "@storybook/react";
import PremiumFeatureIconWithTooltip from "./PremiumFeatureIconWithTooltip";
const meta: Meta<typeof PremiumFeatureIconWithTooltip> = {
title: "Components/PremiumFeatureIconWithTooltip",
component: PremiumFeatureIconWithTooltip,
};
export default meta;
type Story = StoryObj<typeof PremiumFeatureIconWithTooltip>;
export const Basic: Story = {};