mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
15 lines
358 B
TypeScript
15 lines
358 B
TypeScript
|
import { Meta, StoryObj } from "@storybook/react";
|
||
|
|
||
|
import PremiumFeatureMessage from "./PremiumFeatureMessage";
|
||
|
|
||
|
const meta: Meta<typeof PremiumFeatureMessage> = {
|
||
|
title: "Components/PremiumFeatureMessage",
|
||
|
component: PremiumFeatureMessage,
|
||
|
};
|
||
|
|
||
|
export default meta;
|
||
|
|
||
|
type Story = StoryObj<typeof PremiumFeatureMessage>;
|
||
|
|
||
|
export const Basic: Story = {};
|