mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-24 04:27:27 +08:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import type { Meta } from '@storybook/react';
|
|
|
|
import { PageDetailSkeleton } from '.';
|
|
|
|
export default {
|
|
title: 'AFFiNE/PageDetailSkeleton',
|
|
component: PageDetailSkeleton,
|
|
} satisfies Meta<typeof PageDetailSkeleton>;
|
|
|
|
export const Basic = () => {
|
|
return <PageDetailSkeleton />;
|
|
};
|