UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

13 lines (12 loc) 556 B
import type { Meta, StoryObj } from "@storybook/react"; import { Ui89VirtualList } from "./Ui89VirtualList"; declare const meta: Meta<typeof Ui89VirtualList>; export default meta; type Story = StoryObj<typeof meta>; export declare const Empty: Story; export declare const SmallList: Story; export declare const BigList: Story; export declare const CounterRender: Story; export declare const UpdatesRowsWhenChanged: Story; export declare const RendersAllRowsAgainWhenArrayChanges: Story; export declare const RendersAllRowsAgainWhenRenderRowChanges: Story;