From 8706c9bd7fde64076d60322abe1ee105b4885c61 Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Tue, 28 Apr 2026 11:00:23 +0530 Subject: [PATCH 1/2] 1023830: Added README content and sample getting started project. --- README.md | 12 ++++++------ src/App.jsx | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5a2a2f6..7a0afb9 100644 --- a/README.md +++ b/README.md @@ -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) @@ -27,3 +21,9 @@ A quick-start project that helps you create and configure the Syncfusion React S npm start ``` 5. Open http://localhost:3000 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 \ No newline at end of file diff --git a/src/App.jsx b/src/App.jsx index 821ad0f..ba185de 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3,8 +3,8 @@ import { createRoot } from 'react-dom/client'; import { SpreadsheetComponent } from '@syncfusion/ej2-react-spreadsheet'; export default function App() { - return (); + return (); } const root = createRoot(document.getElementById('root')); root.render(); \ No newline at end of file From d77bde708ec05dfc5b133cfea292eff75790742c Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Tue, 28 Apr 2026 11:30:39 +0530 Subject: [PATCH 2/2] 1023830: Added README content and sample getting started project. --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a0afb9..5dc061b 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ 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 diff --git a/package.json b/package.json index 158fc40..3ae597c 100644 --- a/package.json +++ b/package.json @@ -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" },