21 lines
416 B
TypeScript
21 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
|
||
|
}
|
||
|
}
|
||
|
};
|