Files
AFFiNE-Mirror/apps/storybook/src/stories/switch.stories.tsx
T
2023-06-28 12:29:52 +00:00

13 lines
271 B
TypeScript

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