mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-22 04:21:40 +08:00
14 lines
257 B
TypeScript
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 />;
|
|
};
|