react-restyle-components
Version:
Easy use restyle components
7 lines (6 loc) • 297 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
import { MultiSelectWithField } from './multi-select-with-field.component';
declare const meta: Meta<typeof MultiSelectWithField>;
export default meta;
type Story = StoryObj<typeof MultiSelectWithField>;
export declare const Primary: Story;