Removed InfoDialog.stories.tsx

develop
Jason Zhu 2023-05-18 23:00:07 +10:00
parent d27ad13e57
commit 800cecbefc
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
import InfoDialog, { InfoDialogProps } from './InfoDialog';
import { ComponentMeta, ComponentStory } from '@storybook/react';
export default {
title: 'Features/InfoDialog',
component: InfoDialog,
} as ComponentMeta<typeof InfoDialog>;
const Template: ComponentStory<typeof InfoDialog> = (args: InfoDialogProps) => (
<InfoDialog {...args} />
);