diff --git a/README.md b/README.md index 5a2a2f6..5dc061b 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) @@ -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 \ No newline at end of file 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" }, 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