import type { Meta, StoryObj } from '@storybook/react-webpack5'; import { TargetExecutorTitle } from './target-executor-title'; const meta: Meta = { component: TargetExecutorTitle, title: 'TargetExecutorTitle', }; export default meta; type Story = StoryObj; export const Command: Story = { args: { command: 'nx run my-app:build', }, }; export const Commands: Story = { args: { commands: ['nx run my-app:build', 'nx run my-app:test'], }, }; export const Script: Story = { args: { script: 'nx run my-app:build', }, }; export const Executor: Story = { args: {}, };