/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/team-building/continue-button.stories.tsx
26 строк
613 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
import type {Meta, StoryObj} from '@storybook/react' import ContinueButton from './continue-button' const meta: Meta<typeof ContinueButton> = { component: ContinueButton, title: 'TeamBuilding/ContinueButton', args: { label: 'Continue', onClick: () => {}, disabled: false, }, } export default meta type Story = StoryObj<typeof ContinueButton> export const Enabled: Story = { args: {label: 'Continue', disabled: false}, } export const Disabled: Story = { args: {label: 'Continue', disabled: true}, } export const CustomLabel: Story = { args: {label: 'Add to team', disabled: false}, }