18f7c0da76
This component does not take any arguments at the moment. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
20 lines
416 B
TypeScript
20 lines
416 B
TypeScript
import type { Meta, StoryObj } from '@storybook/svelte';
|
|
|
|
import BlockOrReport from '$lib/components/atoms/BlockOrReport.svelte';
|
|
|
|
const meta = {
|
|
title: 'Atoms/BlockOrReport',
|
|
component: BlockOrReport,
|
|
tags: ['autodocs']
|
|
} satisfies Meta<BlockOrReport>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Plain: Story = {
|
|
parameters: {
|
|
controls: {
|
|
hideNoControlsWarning: true
|
|
}
|
|
}
|
|
};
|