UNPKG

react-ui89

Version:

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

17 lines (16 loc) 597 B
import type { Meta, StoryObj } from "@storybook/react"; import { Ui89LinkBase } from "./LinkBase"; import { Ui89OverrideProviderProps } from "../../Ui89Override"; declare const meta: Meta<typeof Ui89LinkBase>; export default meta; type Story = StoryObj<typeof meta>; export declare const NoLink: Story; export declare const OverrideRouterPush: StoryObj<Ui89OverrideProviderProps>; export declare const CallsClickEventHandler: StoryObj<{ routerPush: any; onClick: any; }>; export declare const IgnoresHrefWhenThereIsAClickEventHandler: StoryObj<{ routerPush: any; onClick: any; }>;