react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
8 lines (7 loc) • 308 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
import { Ui89InputTextArea } from "./Ui89InputTextArea";
declare const meta: Meta<typeof Ui89InputTextArea>;
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const PreservesLineBreaks: Story;