excel-collab
v0.1.13
Published
Online Collaboration Excel
Maintainers
Readme
Installation
npm i --save excel-collabQuick Start
- Create a React app
npm create vite@latest my-app -- --template react-ts
cd my-app
npm i- Install the Required Libraries
npm i --save excel-collab- Modify the Main File
// src/main.tsx
import { createRoot } from 'react-dom/client';
import { StrictMode } from 'react';
import { Excel } from 'excel-collab';
import 'excel-collab/style.css';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<Excel style={{ height: '100vh' }} />
</StrictMode>,
);- Start the app
npm run dev