mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 11:02:26 +03:00
16 lines
384 B
TypeScript
16 lines
384 B
TypeScript
/* deepscan-disable USELESS_ARROW_FUNC_BIND */
|
|
import { TourModal } from '@affine/component/tour-modal';
|
|
import type { StoryFn } from '@storybook/react';
|
|
|
|
export default {
|
|
title: 'AFFiNE/TourModal',
|
|
component: TourModal,
|
|
};
|
|
|
|
export const Basic: StoryFn = () => {
|
|
return <TourModal open={true} onClose={() => {}} />;
|
|
};
|
|
Basic.args = {
|
|
logoSrc: '/imgs/affine-text-logo.png',
|
|
};
|