UNPKG

@light-sheet/react

Version:

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

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