Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

A quick-start project that helps you create and configure the Syncfusion React Spreadsheet component. This project enables users to clone and run the app easily to explore Spreadsheet features.

## Documentation

- Getting Started Guide: https://help.syncfusion.com/document-processing/excel/spreadsheet/react/getting-started
- Online Demo: https://document.syncfusion.com/demos/spreadsheet-editor/react/#/tailwind3/spreadsheet/default
- Tutorial Videos: https://www.syncfusion.com/tutorial-videos/react/spreadsheet

## Project Prerequisites

- Node.js(v14.15.0 or higher)
Expand All @@ -24,6 +18,12 @@ A quick-start project that helps you create and configure the Syncfusion React S
```
4. Run the application using:
```
npm start
npm run dev
```
5. Open http://localhost:3000 in your browser.
5. Open http://localhost:5173 in your browser.

## Documentation

- Getting Started Guide: https://help.syncfusion.com/document-processing/excel/spreadsheet/react/getting-started
- Online Demo: https://document.syncfusion.com/demos/spreadsheet-editor/react/#/tailwind3/spreadsheet/default
- Tutorial Videos: https://www.syncfusion.com/tutorial-videos/react/spreadsheet
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"@syncfusion/ej2-react-spreadsheet": "^33.2.3",
"@syncfusion/ej2-react-spreadsheet": "*",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
Expand Down
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { createRoot } from 'react-dom/client';
import { SpreadsheetComponent } from '@syncfusion/ej2-react-spreadsheet';

export default function App() {
return (<SpreadsheetComponent openUrl='https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open'
saveUrl='https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save' />);
return (<SpreadsheetComponent openUrl='https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open'
saveUrl='https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save' />);
}
const root = createRoot(document.getElementById('root'));
root.render(<App />);
Loading