mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
822 B
TypeScript
23 lines
822 B
TypeScript
import React from 'react';
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import { VirtualChatList } from '.';
|
|
|
|
// More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
|
|
export default {
|
|
title: 'Tailchat/VirtualChatList',
|
|
component: VirtualChatList,
|
|
// More on argTypes: https://storybook.js.org/docs/react/api/argtypes
|
|
argTypes: {},
|
|
} as ComponentMeta<typeof VirtualChatList>;
|
|
|
|
// More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args
|
|
const Template: ComponentStory<typeof VirtualChatList> = (args) => (
|
|
<VirtualChatList {...args} />
|
|
);
|
|
|
|
export const Default = Template.bind({});
|
|
// More on args: https://storybook.js.org/docs/react/writing-stories/args
|
|
Default.args = {
|
|
text: 'fooooo',
|
|
};
|