first-start / src /shared /ui /Title /Title.stories.tsx
Артем Леванов
first commit
41a71fd
raw
history blame contribute delete
444 Bytes
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: 'Заголовок второго уровня',
},
};