feat: add color picker story

This commit is contained in:
Ivana Andersson 2023-08-18 11:31:41 +03:00
parent 4c622e51ab
commit 634710b0b1
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import type { Meta, StoryObj } from '@storybook/react'
import ColorPicker from './ColorPicker'
const meta = {
title: 'General/ColorPicker',
component: ColorPicker,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
} satisfies Meta<typeof ColorPicker>
export default meta
type Story = StoryObj<typeof meta>
export const DefaultColors: Story = {
args: {},
}