packages/storybook8/stories/Components/RealTimeText/RealTimeText.story.tsx (16 lines of code) (raw):
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { RealTimeText as RealTimeTextExample } from '@azure/communication-react';
import { Stack } from '@fluentui/react';
import React from 'react';
const RealTimeTextStory = (args: { isTyping: boolean; displayName: string; message: string }): JSX.Element => {
return (
<Stack>
<RealTimeTextExample
id={1}
displayName={args.displayName ?? 'Caroline'}
message={args.message ?? 'Hello'}
isTyping={args.isTyping}
/>
</Stack>
);
};
// This must be the only named export from this module, and must be named to match the storybook path suffix.
// This ensures that storybook hoists the story instead of creating a folder with a single entry.
export const RealTimeText = RealTimeTextStory.bind({});