import type { Meta, StoryObj } from '@storybook/react'; | |
import { Title } from './Title'; | |
const meta = { | |
title: 'Shared/Title', | |
component: Title, | |
parameters: { | |
layout: 'centered', | |
}, | |
tags: ['autodocs'], | |
} satisfies Meta<typeof Title>; | |
export default meta; | |
type Story = StoryObj<typeof meta>; | |
export const Primary: Story = { | |
args: { | |
children: 'Заголовок второго уровня', | |
}, | |
}; | |