mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
22 lines
593 B
TypeScript
22 lines
593 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import { PromptTriggerSelect } from './PromptTriggerSelect';
|
|
import type { PromptTriggerSelectProps } from './types';
|
|
|
|
const meta: Meta<typeof PromptTriggerSelect> = {
|
|
title: 'Feature/Prompt/PromptTriggerSelect',
|
|
tags: ['autodocs'],
|
|
component: PromptTriggerSelect,
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof PromptTriggerSelect>;
|
|
|
|
const Component = (props: PromptTriggerSelectProps) => {
|
|
return <PromptTriggerSelect {...props}>Invoke</PromptTriggerSelect>;
|
|
};
|
|
|
|
export const Default: Story = {
|
|
render: Component,
|
|
};
|