UNPKG

react-timed-image

Version:

React image component that re-renders at timed intervals. Includes optional cache busting.

8 lines (7 loc) 301 B
import { TimedImage } from '../components/TimedImage'; import type { Meta, StoryObj } from '@storybook/react'; declare const StoryComponent: typeof TimedImage; declare const meta: Meta<typeof StoryComponent>; export default meta; type Story = StoryObj<typeof meta>; export declare const Hello: Story;