UNPKG

@fortune-sheet/react

Version:

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

9 lines (8 loc) 223 B
import React from "react"; import { Sheet as SheetType } from "@fortune-sheet/core"; import "./index.css"; declare type Props = { sheet: SheetType; }; declare const Sheet: React.FC<Props>; export default Sheet;