26 lines
774 B
TypeScript
26 lines
774 B
TypeScript
/*
|
|||
|
|
Copyright 2025 New Vector Ltd.
|
||
|
|
|
||
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
||
|
|
Please see LICENSE files in the repository root for full details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import React from "react";
|
||
|
|
import { type Meta, type StoryFn } from "@storybook/react-vite";
|
||
|
|
|
||
|
|
import { TextualEvent as TextualEventComponent } from "./TextualEvent";
|
||
|
|
import { MockViewModel } from "../../MockViewModel";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
title: "Event/TextualEvent",
|
||
|
|
component: TextualEventComponent,
|
||
|
|
tags: ["autodocs"],
|
||
|
|
args: {
|
||
|
|
vm: new MockViewModel("Dummy textual event text"),
|
||
|
|
},
|
||
|
|
} as Meta<typeof TextualEventComponent>;
|
||
|
|
|
||
|
|
const Template: StoryFn<typeof TextualEventComponent> = (args) => <TextualEventComponent {...args} />;
|
||
|
|
|
||
|
|
export const Default = Template.bind({});
|