Skip to content

Commit 05d5e1d

Browse files
committed
1011820: Addressed review comments and resolved CI issues.
1 parent b9a21a3 commit 05d5e1d

5 files changed

Lines changed: 21 additions & 21 deletions

File tree

Document-Processing-toc.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5261,11 +5261,11 @@
52615261
<li><a href="/document-processing/excel/spreadsheet/react/data-binding">Data Binding</a></li>
52625262
<li>Environment Integration
52635263
<ul>
5264-
<li><a href="/document-processing/excel/spreadsheet/react/environment-integration/nextjs-getting-started">Using with NextJS</a></li>
5265-
<li><a href="/document-processing/excel/spreadsheet/react/environment-integration/create-react-app">Using with Create React App</a></li>
5266-
<li><a href="/document-processing/excel/spreadsheet/react/environment-integration/preact">Using with Preact</a></li>
5267-
<li><a href="/document-processing/excel/spreadsheet/react/environment-integration/remix">Using with Remix</a></li>
5268-
<li><a href="/document-processing/excel/spreadsheet/react/environment-integration/sharepoint">Using with SharePoint Framework (SPFx)</a></li>
5264+
<li><a href="/document-processing/excel/spreadsheet/react/environment-integrations/nextjs-getting-started">Using with NextJS</a></li>
5265+
<li><a href="/document-processing/excel/spreadsheet/react/environment-integrations/create-react-app">Using with Create React App</a></li>
5266+
<li><a href="/document-processing/excel/spreadsheet/react/environment-integrations/preact">Using with Preact</a></li>
5267+
<li><a href="/document-processing/excel/spreadsheet/react/environment-integrations/remix">Using with Remix</a></li>
5268+
<li><a href="/document-processing/excel/spreadsheet/react/environment-integrations/sharepoint">Using with SharePoint Framework (SPFx)</a></li>
52695269
</ul>
52705270
</li>
52715271
<li><a href="/document-processing/excel/spreadsheet/react/open-excel-files">Open Excel Files</a>

Document-Processing/Excel/Spreadsheet/React/Environment Integrations/create-react-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: React Spreadsheet getting started with Create React App | Syncfusion
4-
description: Integrate and use the Syncfusion React Spreadsheet component using create react app.
4+
description: Integrate and use React Spreadsheet using create react app.
55
control: Spreadsheet
66
platform: document-processing
77
documentation: ug
@@ -41,7 +41,7 @@ npx create-react-app my-app --template typescript
4141
cd my-app
4242
```
4343

44-
Besides using the [npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) package runner tool, also create an application from the `npm init`. To begin with the `npm init`, upgrade the `npm` version to `npm 6`+.
44+
Besides using the `npx` package runner tool, also create an application from the `npm init`. To begin with the `npm init`, upgrade the `npm` version to `npm 6`+.
4545

4646
```bash
4747
npm init react-app my-app
@@ -65,7 +65,7 @@ yarn add @syncfusion/ej2-react-spreadsheet
6565

6666
## Import CSS
6767

68-
Syncfusion React Spreadshet come with built-in [themes](https://ej2.syncfusion.com/react/documentation/appearance/theme). Import the CSS styles for the Srpeadsheet component and its dependent components in the `src/App.css` file. The example below demonstrates importing the `Tailwind 3` theme.
68+
Syncfusion React Spreadsheet come with built-in [themes](https://ej2.syncfusion.com/react/documentation/appearance/theme). Import the CSS styles for the Spreadsheet component and its dependent components in the `src/App.css` file. The example below demonstrates importing the `Tailwind 3` theme.
6969

7070
```css
7171
@import '../node_modules/@syncfusion/ej2-base/styles/tailwind3.css';
@@ -84,7 +84,7 @@ For more details on built-in themes and usage, refer to the [Themes topic](https
8484

8585
## Adding Spreadsheet component
8686

87-
Now, you can import the spreadsheet component into your `src/App.jsx` file.
87+
Now, you can import the spreadsheet component into your `src/App.js` file.
8888

8989
{% tabs %}
9090
{% highlight js tabtitle="app.jsx" %}

Document-Processing/Excel/Spreadsheet/React/Environment Integrations/preact.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: React Spreadsheet getting started with Preact | Syncfusion
4-
description: Integrate and use the Syncfusion React Spreadsheet component within a Preact app.
4+
description: Integrate and use React Spreadsheet within a Preact app.
55
control: Spreadsheet
66
platform: document-processing
77
documentation: ug
@@ -119,7 +119,7 @@ Import the Syncfusion® component themes in the `src/style.css` file as shown be
119119

120120
## Adding Spreadsheet component
121121

122-
Add the React Spreadsheet component in `src/index.jsx` file using the following code:
122+
Add the React Spreadsheet component in `src/index.js` file using the following code:
123123

124124
```js
125125
import * as React from 'react';

Document-Processing/Excel/Spreadsheet/React/Environment Integrations/remix.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: React Spreadsheet getting started with Remix | Syncfusion
4-
description: Integrate and use the Syncfusion React Spreadsheet component within a Remix app.
4+
description: Integrate and use React Spreadsheet within a Remix app.
55
control: Spreadsheet
66
platform: document-processing
77
documentation: ug
@@ -102,15 +102,15 @@ export default defineConfig({
102102
});
103103
```
104104

105-
This configuration ensures Syncfusion modules are properly transpiled for SSR compatibility.
105+
This configuration ensures Syncfusion modules are properly compiled for SSR compatibility.
106106

107107
## Adding Spreadsheet component
108108

109-
Add the React Spreadsheet component in `~/app/routes/_index.tsx` file using the following code:
109+
Add the React Spreadsheet component in `~/app/routes/_index.ts` file using the following code:
110110

111111
```js
112112
import type { Route } from "./+types/home";
113-
import {Spreadsheet} from '../components/spreadsheet';
113+
import { SpreadsheetComponent } from '@syncfusion/ej2-react-spreadsheet';
114114

115115
export function meta({}: Route.MetaArgs) {
116116
return [
@@ -120,7 +120,7 @@ export function meta({}: Route.MetaArgs) {
120120
}
121121

122122
export default function Index() {
123-
return <Spreadsheet />;
123+
return <SpreadsheetComponent />;
124124
}
125125
```
126126

Document-Processing/Excel/Spreadsheet/React/Environment Integrations/sharepoint.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Syncfusion React Spreadsheet in SharePoint
4-
description: Quickstart to integrate the Syncfusion React Spreadsheet into an SPFx React web part.
4+
description: To integrate React Spreadsheet into an SPFx React web part.
55
control: Spreadsheet
66
platform: document-processing
77
documentation: ug
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
This article provides a step-by-step guide for setting up a SharePoint project and integrating the Syncfusion® React components.
1313

14-
`SharePoint` Framework (SPFx) is a development model and framework provided by Microsoft for building custom solutions and extensions for SharePoint and Microsoft Teams. It is a modern, client-side framework that allows developers to create web parts, extensions, and customizations that can be deployed and used within SharePoint sites and Teams applications.
14+
`SharePoint` Framework is a development model and framework provided by Microsoft for building custom solutions and extensions for SharePoint and Microsoft Teams. It is a modern, client-side framework that allows developers to create web parts, extensions, and customizations that can be deployed and used within SharePoint sites and Teams applications.
1515

1616
## Prerequisites
1717

@@ -20,7 +20,7 @@ This article provides a step-by-step guide for setting up a SharePoint project a
2020

2121
## Set up the SharePoint project
2222

23-
Create a new SPFx project using the following command:
23+
Create a new project using the following command:
2424

2525
**Step 1:** To initiate the creation of a new SharePoint project, use the following command:
2626

@@ -58,7 +58,7 @@ npm install @syncfusion/ej2-react-spreadsheet --save
5858
## Adding CSS reference
5959
Themes for Syncfusion React Spreadsheet can be applied using CSS files from npm packages, CDN, CRG, or [Theme Studio](https://ej2.syncfusion.com/react/documentation/appearance/theme-studio). Refer to the [themes documentation](https://ej2.syncfusion.com/react/documentation/appearance/theme) for more detail.
6060
61-
This example demonstrates importing the Material theme CSS within the `App.tsx` file located at `~/src/webparts/app/components/App.tsx`:
61+
This example demonstrates importing the `Tailwind 3` theme CSS within the `App.ts` file located at `~/src/webparts/app/components/App.ts`:
6262
6363
```ts
6464
require('@syncfusion/ej2-base/styles/tailwind3.css');
@@ -75,7 +75,7 @@ require('@syncfusion/ej2-react-spreadsheet/styles/tailwind3.css');
7575
7676
## Add Spreadsheet Component
7777
78-
Add the below code in the App.tsx file inside the ~/src/webparts/app/components folder to render the spreadsheet.
78+
Add the below code in the `App.ts` file inside the ~/src/webparts/app/components folder to render the spreadsheet.
7979
8080
```ts
8181
import * as React from 'react';

0 commit comments

Comments
 (0)