react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
11 lines (10 loc) • 405 B
TypeScript
import React from "react";
import "../../node_modules/react-datepicker/dist/react-datepicker.css";
import "./Ui89DateTimePicker.css";
import "../style/input-box.css";
import "../style/typo.css";
export interface Ui89DateTimePickerProps {
value?: Date | null;
onChange?: (value: Date | null) => void;
}
export declare function Ui89DateTimePicker(props: Ui89DateTimePickerProps): React.JSX.Element;