Files
AFFiNE-Mirror/packages/component/src/stories/switch.stories.tsx
T
2023-05-08 17:37:07 -05:00

14 lines
257 B
TypeScript

/* deepscan-disable USELESS_ARROW_FUNC_BIND */
import type { StoryFn } from '@storybook/react';
import { Switch } from '..';
export default {
title: 'AFFiNE/Switch',
component: Switch,
};
export const Basic: StoryFn = () => {
return <Switch />;
};