Skip to content

Commit 8706c9b

Browse files
committed
1023830: Added README content and sample getting started project.
1 parent 2fc14b6 commit 8706c9b

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 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)
@@ -27,3 +21,9 @@ A quick-start project that helps you create and configure the Syncfusion React S
2721
npm start
2822
```
2923
5. Open http://localhost:3000 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

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)