mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-18 12:33:22 +00:00
feat: slider styles
This commit is contained in:
17
src/components/ui/slider/slider.stories.tsx
Normal file
17
src/components/ui/slider/slider.stories.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react'
|
||||
|
||||
import { Slider } from './'
|
||||
|
||||
const meta = {
|
||||
component: Slider,
|
||||
parameters: {},
|
||||
tags: ['autodocs'],
|
||||
title: 'Components/Slider',
|
||||
} satisfies Meta<typeof Slider>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: { value: [0, 100] },
|
||||
}
|
||||
Reference in New Issue
Block a user