UNPKG

react-uncached-image

Version:

React image component that bypasses caching using query param cache busting.

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