// Copyright 2022 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import type { Meta } from '@storybook/react'; import { setupI18n } from '../../util/setupI18n'; import enMessages from '../../../_locales/en/messages.json'; import type { PropsType } from './TimelineFloatingHeader'; import { TimelineFloatingHeader } from './TimelineFloatingHeader'; const i18n = setupI18n('en', enMessages); export default { title: 'Components/TimelineFloatingHeader', argTypes: { isLoading: { control: { type: 'boolean' } }, visible: { control: { type: 'boolean' } }, }, args: { isLoading: false, visible: false, i18n, timestamp: Date.now(), }, } satisfies Meta; export function Default(args: PropsType): JSX.Element { return ; } export function Visible(args: PropsType): JSX.Element { return ; } export function Loading(args: PropsType): JSX.Element { return ; }