UNPKG

@fortune-sheet/react

Version:

FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets

10 lines (9 loc) 240 B
import React from "react"; declare type Props = { type: "ok" | "yesno"; onOk?: () => void; onCancel?: () => void; children?: React.ReactNode; }; declare const MessageBox: React.FC<Props>; export default MessageBox;