aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/settings-form/motion-toggle/motion-toggle.stories.ts
blob: 5244ae170f41639503df372edd5a56a06716826b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type { Meta, StoryObj } from '@storybook/react';
import { MotionToggle } from './motion-toggle';

const meta = {
  component: MotionToggle,
  title: 'Organisms/Forms/Settings/Motion',
} satisfies Meta<typeof MotionToggle>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Example: Story = {
  args: {},
};