mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-21 08:17:10 +08:00
17 lines
349 B
TypeScript
17 lines
349 B
TypeScript
import type { Meta, StoryFn } from '@storybook/react';
|
|
|
|
import { AppUpdaterButton } from '.';
|
|
|
|
export default {
|
|
title: 'Components/AppSidebar/AppUpdaterButton',
|
|
component: AppUpdaterButton,
|
|
} satisfies Meta;
|
|
|
|
export const Default: StoryFn = () => {
|
|
return (
|
|
<main style={{ width: '240px' }}>
|
|
<AppUpdaterButton />
|
|
</main>
|
|
);
|
|
};
|