Delete button-with-dropdown.stories.ts

This commit is contained in:
Niels Lyngsø
2023-12-05 11:39:20 +01:00
parent 1b8278fd5e
commit d1cd36c96a

View File

@@ -1,16 +0,0 @@
import { Meta, Story } from '@storybook/web-components';
import { UmbButtonWithDropdownElement } from './button-with-dropdown.element.js';
import { html } from '@umbraco-cms/backoffice/external/lit';
export default {
title: 'Components/Button with dropdown',
component: 'umb-button-with-dropdown',
id: 'umb-button-with-dropdown',
} as Meta;
export const AAAOverview: Story<UmbButtonWithDropdownElement> = () =>
html` <umb-button-with-dropdown>
Open me
<div slot="dropdown" style="background: pink; height: 300px">I am a dropdown</div>
</umb-button-with-dropdown>`;
AAAOverview.storyName = 'Overview';