feat: switch button initial test

This commit is contained in:
2024-09-04 12:25:16 -05:00
parent 0e70bbd52f
commit 4397dfb1c5
2 changed files with 44 additions and 0 deletions

View 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 = {};