Installation
Install the package with npm or pnpm and get started quickly.
A lightweight spreadsheet editor component for React, powered by the Apiary spreadsheet engine. Install as @grid-is/editor-react.
import { SpreadsheetEditor } from "@grid-is/editor-react";
function App() { const model = /* your Model instance */;
return ( <div style={{ width: "100vw", height: "100vh" }}> <SpreadsheetEditor model={model} /> </div> );}Installation
Install the package with npm or pnpm and get started quickly.
Loading Spreadsheets
Learn how to create a Model from Excel files.
Reference
Explore all available props and type definitions.