mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-21 20:11:43 +08:00
13 lines
284 B
TypeScript
13 lines
284 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>Switch</Switch>;
|
|
};
|