mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-27 10:52:40 +08:00
feat(core): basic page/edgeless toggle animation (#5283)
This commit is contained in:
14
tests/storybook/src/stories/onboarding.stories.tsx
Normal file
14
tests/storybook/src/stories/onboarding.stories.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { Input } from '@affine/component';
|
||||
import { Onboarding } from '@affine/core/components/affine/onboarding/onboarding';
|
||||
import type { Meta, StoryFn } from '@storybook/react';
|
||||
|
||||
export default {
|
||||
title: 'Preview/Onboarding',
|
||||
parameters: {
|
||||
chromatic: { disableSnapshot: true },
|
||||
},
|
||||
} satisfies Meta<typeof Input>;
|
||||
|
||||
export const Preview: StoryFn<typeof Onboarding> = () => {
|
||||
return <Onboarding />;
|
||||
};
|
||||
Reference in New Issue
Block a user