@light-sheet/react
Version:
FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets
11 lines (10 loc) • 322 B
TypeScript
import React from "react";
import { Sheet as SheetType } from "@light-sheet/core";
import "./index.css";
import { useUIapi } from "../../hooks/useUIapi";
type Props = {
sheet: SheetType;
refLayout: React.RefObject<ReturnType<typeof useUIapi> | null>;
};
declare const Sheet: React.FC<Props>;
export default Sheet;