feat: Добавлен переиспользуемый компонент кнопки с задаваемыми размерами, вариантами и цветовыми схемами. Добавлен декоратор стилей для сторибука, установлена библиотека для работы с классами

This commit is contained in:
Ilia Mashkov
2025-11-20 09:26:01 +03:00
parent e440005e60
commit 5c869eb215
12 changed files with 281 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
import type { Decorator } from '@storybook/react'
import '@/app/styles/index.scss'
export const StyleDecorator: Decorator = (Story) => (
<>
<Story />
</>
)