File size: 444 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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: 'Заголовок второго уровня',
},
};
|