feat: switch button initial test
This commit is contained in:
16
src/stories/components/ToggleSwitch.stories.tsx
Normal file
16
src/stories/components/ToggleSwitch.stories.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
import SwitchButton from 'src/views/components/common/SwitchButton';
|
||||
|
||||
const meta = {
|
||||
title: 'Components/Common/SwitchButton',
|
||||
component: SwitchButton,
|
||||
tags: ['autodocs'],
|
||||
parameters: {
|
||||
layout: 'centered',
|
||||
},
|
||||
} satisfies Meta<typeof SwitchButton>;
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {};
|
||||
Reference in New Issue
Block a user