2022-04-28 08:19:20 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
|
|
import ChatTextField from '../components/chat/ChatTextField';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'owncast/Chat/Input text field',
|
|
|
|
component: ChatTextField,
|
|
|
|
parameters: {},
|
|
|
|
} as ComponentMeta<typeof ChatTextField>;
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2022-04-30 00:09:53 +02:00
|
|
|
const Template: ComponentStory<typeof ChatTextField> = args => <ChatTextField />;
|
2022-04-28 08:19:20 +02:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2022-04-30 00:09:53 +02:00
|
|
|
export const Example = Template.bind({});
|