vbv/client/src/components/ui/ItSuccessAlert.stories.ts

20 lines
655 B
TypeScript

import ItSuccessAlert from "@/components/ui/ItSuccessAlert.vue";
import type { Meta, StoryObj } from "@storybook/vue3";
// More on how to set up stories at: https://storybook.js.org/docs/7.0/vue/writing-stories/introduction
const meta: Meta<typeof ItSuccessAlert> = {
title: "VBV/SuccessAlert",
component: ItSuccessAlert,
// This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/7.0/vue/writing-docs/docs-page
tags: ["autodocs"],
};
export default meta;
type Story = StoryObj<typeof ItSuccessAlert>;
export const Default: Story = {
args: {
text: "Deiner Praxisauftrag wurde abgegeben",
},
};