UNPKG

react-ui89

Version:

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

14 lines (13 loc) 409 B
import React from "react"; import "./Ui89MenuBar.css"; import "../style/typo.css"; import "../style/scrollbar.css"; export interface Ui89MenuBarPropsItem { label: React.ReactNode; onClick?: () => void; children?: Ui89MenuBarPropsItem[]; } export interface Ui89MenuBarProps { items: Ui89MenuBarPropsItem[]; } export declare function Ui89MenuBar({ items }: Ui89MenuBarProps): React.JSX.Element;