// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import Flex from '../../Flex'; import ChatBubbleContainer from './ChatBubbleContainer'; import ChatBubble from './'; import PopOverItem from '../../PopOver/PopOverItem'; import { formatTime } from '../../Utilities'; export default { title: 'UI Components/Chat/ChatBubbleContainer', component: ChatBubbleContainer, }; export const _ChatBubbleContainer = () => { const flexStyles = ` display: flex; flex-direction: column; width: 30rem; `; const bubbleStyles = ` margin: 1rem; `; const actions = ( console.log('Option 1 clicked')} children={Option 1} /> ); return ( This is an example ChatBubble in a ChatBubbleContainer. This is an example ChatBubble in a ChatBubbleContainer. ); }; _ChatBubbleContainer.story = { name: 'ChatBubbleContainer', };