feat: add new affine loading component

This commit is contained in:
himself65
2023-04-11 22:57:20 -05:00
parent 07a11ed767
commit db8fe4e09a
12 changed files with 1588 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
import type { StoryFn } from '@storybook/react';
import { AffineLoading } from '../components/affine-loading';
export default {
title: 'AFFiNE/Loading',
component: AffineLoading,
};
export const Default: StoryFn = () => <AffineLoading />;