mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-01 01:29:31 +08:00
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
/* deepscan-disable USELESS_ARROW_FUNC_BIND */
|
|
import { Switch } from '@affine/component';
|
|
import type { Meta, StoryFn } from '@storybook/react';
|
|
|
|
export default {
|
|
title: 'AFFiNE/Switch',
|
|
component: Switch,
|
|
parameters: {
|
|
chromatic: { disableSnapshot: true },
|
|
},
|
|
} satisfies Meta;
|
|
|
|
export const Basic: StoryFn = () => {
|
|
return <Switch>Switch</Switch>;
|
|
};
|