fui-fancyui
Version:
FancyUI Libary
20 lines (19 loc) • 456 B
TypeScript
import { StoryObj } from '@storybook/react';
import { default as BackDrop } from './BackDrop';
declare const meta: {
component: typeof BackDrop;
title: string;
parameters: {
layout: string;
docs: {
description: {
component: string;
};
};
};
tags: string[];
argTypes: {};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;