mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
import type { Meta, StoryFn } from '@storybook/react';
|
|
|
|
import { Loading, type LoadingProps } from './loading';
|
|
|
|
export default {
|
|
title: 'UI/Loading',
|
|
component: Loading,
|
|
} satisfies Meta<typeof Loading>;
|
|
|
|
const Template: StoryFn<LoadingProps> = args => <Loading {...args} />;
|
|
|
|
export const Default: StoryFn<LoadingProps> = Template.bind(undefined);
|
|
Default.args = {};
|