// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import type { Meta } from '@storybook/react'; import type { Props } from './UniversalTimerNotification'; import { UniversalTimerNotification } from './UniversalTimerNotification'; import { EXPIRE_TIMERS } from '../../test-both/util/expireTimers'; export default { title: 'Components/UniversalTimerNotification', } satisfies Meta; const { i18n } = window.SignalContext; export function Seconds(): JSX.Element { return ( ); } export function Minutes(): JSX.Element { return ( ); } export function Hours(): JSX.Element { return ( ); } export function Days(): JSX.Element { return ( ); } export function Weeks(): JSX.Element { return ( ); }