Skip to content

Commit e07ee28

Browse files
Merge pull request #15 from SyncfusionExamples/EJ2-1023830-react
documentation(EJ2-1023830): Create new repos for Getting Started Sample for all the Spreadsheet Platforms
2 parents 1801180 + d77bde7 commit e07ee28

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
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.
44

5-
## Documentation
6-
7-
- Getting Started Guide: https://help.syncfusion.com/document-processing/excel/spreadsheet/react/getting-started
8-
- Online Demo: https://document.syncfusion.com/demos/spreadsheet-editor/react/#/tailwind3/spreadsheet/default
9-
- Tutorial Videos: https://www.syncfusion.com/tutorial-videos/react/spreadsheet
10-
115
## Project Prerequisites
126

137
- 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
2418
```
2519
4. Run the application using:
2620
```
27-
npm start
21+
npm run dev
2822
```
29-
5. Open http://localhost:3000 in your browser.
23+
5. Open http://localhost:5173 in your browser.
24+
25+
## Documentation
26+
27+
- Getting Started Guide: https://help.syncfusion.com/document-processing/excel/spreadsheet/react/getting-started
28+
- Online Demo: https://document.syncfusion.com/demos/spreadsheet-editor/react/#/tailwind3/spreadsheet/default
29+
- Tutorial Videos: https://www.syncfusion.com/tutorial-videos/react/spreadsheet

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@syncfusion/ej2-react-spreadsheet": "^33.2.3",
13+
"@syncfusion/ej2-react-spreadsheet": "*",
1414
"react": "^19.2.5",
1515
"react-dom": "^19.2.5"
1616
},

src/App.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { createRoot } from 'react-dom/client';
33
import { SpreadsheetComponent } from '@syncfusion/ej2-react-spreadsheet';
44

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

0 commit comments

Comments
 (0)